Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
54afeb02
Commit
54afeb02
authored
Jul 10, 2006
by
Ge van Geldorp
Committed by
Alexandre Julliard
Jul 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Implement Get/SetClassLongPtrA/W.
parent
c142bd91
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
class.c
dlls/user/class.c
+0
-0
server_protocol.h
include/wine/server_protocol.h
+3
-3
protocol.def
server/protocol.def
+2
-2
trace.c
server/trace.c
+2
-2
No files found.
dlls/user/class.c
View file @
54afeb02
This diff is collapsed.
Click to expand it.
include/wine/server_protocol.h
View file @
54afeb02
...
...
@@ -3401,7 +3401,7 @@ struct set_class_info_request
void
*
instance
;
int
extra_offset
;
size_t
extra_size
;
unsigned
int
extra_value
;
unsigned
long
extra_value
;
};
struct
set_class_info_reply
{
...
...
@@ -3411,7 +3411,7 @@ struct set_class_info_reply
int
old_extra
;
int
old_win_extra
;
void
*
old_instance
;
unsigned
int
old_extra_value
;
unsigned
long
old_extra_value
;
};
#define SET_CLASS_ATOM 0x0001
#define SET_CLASS_STYLE 0x0002
...
...
@@ -4382,6 +4382,6 @@ union generic_reply
struct
query_symlink_reply
query_symlink_reply
;
};
#define SERVER_PROTOCOL_VERSION 23
6
#define SERVER_PROTOCOL_VERSION 23
7
#endif
/* __WINE_WINE_SERVER_PROTOCOL_H */
server/protocol.def
View file @
54afeb02
...
...
@@ -2384,14 +2384,14 @@ enum message_type
void* instance; /* module instance */
int extra_offset; /* offset to set in extra bytes */
size_t extra_size; /* size to set in extra bytes */
unsigned
int
extra_value; /* value to set in extra bytes */
unsigned
long
extra_value; /* value to set in extra bytes */
@REPLY
atom_t old_atom; /* previous class atom */
unsigned int old_style; /* previous class style */
int old_extra; /* previous number of class extra bytes */
int old_win_extra; /* previous number of window extra bytes */
void* old_instance; /* previous module instance */
unsigned
int
old_extra_value; /* old value in extra bytes */
unsigned
long
old_extra_value; /* old value in extra bytes */
@END
#define SET_CLASS_ATOM 0x0001
#define SET_CLASS_STYLE 0x0002
...
...
server/trace.c
View file @
54afeb02
...
...
@@ -2983,7 +2983,7 @@ static void dump_set_class_info_request( const struct set_class_info_request *re
fprintf
(
stderr
,
" instance=%p,"
,
req
->
instance
);
fprintf
(
stderr
,
" extra_offset=%d,"
,
req
->
extra_offset
);
fprintf
(
stderr
,
" extra_size=%lu,"
,
(
unsigned
long
)
req
->
extra_size
);
fprintf
(
stderr
,
" extra_value=%
08
x"
,
req
->
extra_value
);
fprintf
(
stderr
,
" extra_value=%
l
x"
,
req
->
extra_value
);
}
static
void
dump_set_class_info_reply
(
const
struct
set_class_info_reply
*
req
)
...
...
@@ -2993,7 +2993,7 @@ static void dump_set_class_info_reply( const struct set_class_info_reply *req )
fprintf
(
stderr
,
" old_extra=%d,"
,
req
->
old_extra
);
fprintf
(
stderr
,
" old_win_extra=%d,"
,
req
->
old_win_extra
);
fprintf
(
stderr
,
" old_instance=%p,"
,
req
->
old_instance
);
fprintf
(
stderr
,
" old_extra_value=%
08
x"
,
req
->
old_extra_value
);
fprintf
(
stderr
,
" old_extra_value=%
l
x"
,
req
->
old_extra_value
);
}
static
void
dump_set_clipboard_info_request
(
const
struct
set_clipboard_info_request
*
req
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment