Commit 0c914e47 authored by Alexandre Julliard's avatar Alexandre Julliard

server: Make atom_t an unsigned int to avoid padding issues.

parent fa864380
...@@ -135,7 +135,7 @@ static BOOL set_server_info( HWND hwnd, INT offset, LONG_PTR newval, UINT size ) ...@@ -135,7 +135,7 @@ static BOOL set_server_info( HWND hwnd, INT offset, LONG_PTR newval, UINT size )
{ {
case GCW_ATOM: case GCW_ATOM:
req->flags = SET_CLASS_ATOM; req->flags = SET_CLASS_ATOM;
req->atom = newval; req->atom = LOWORD(newval);
case GCL_STYLE: case GCL_STYLE:
req->flags = SET_CLASS_STYLE; req->flags = SET_CLASS_STYLE;
req->style = newval; req->style = newval;
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
typedef unsigned int obj_handle_t; typedef unsigned int obj_handle_t;
typedef unsigned int user_handle_t; typedef unsigned int user_handle_t;
typedef unsigned short atom_t; typedef unsigned int atom_t;
typedef unsigned int process_id_t; typedef unsigned int process_id_t;
typedef unsigned int thread_id_t; typedef unsigned int thread_id_t;
typedef unsigned int data_size_t; typedef unsigned int data_size_t;
...@@ -148,7 +148,7 @@ typedef __int64 timeout_t; ...@@ -148,7 +148,7 @@ typedef __int64 timeout_t;
typedef struct typedef struct
{ {
atom_t atom; atom_t atom;
short string; int string;
lparam_t data; lparam_t data;
} property_data_t; } property_data_t;
...@@ -2857,7 +2857,7 @@ struct get_window_info_reply ...@@ -2857,7 +2857,7 @@ struct get_window_info_reply
process_id_t pid; process_id_t pid;
thread_id_t tid; thread_id_t tid;
atom_t atom; atom_t atom;
short int is_unicode; int is_unicode;
}; };
...@@ -5061,6 +5061,6 @@ union generic_reply ...@@ -5061,6 +5061,6 @@ union generic_reply
struct set_window_layered_info_reply set_window_layered_info_reply; struct set_window_layered_info_reply set_window_layered_info_reply;
}; };
#define SERVER_PROTOCOL_VERSION 376 #define SERVER_PROTOCOL_VERSION 377
#endif /* __WINE_WINE_SERVER_PROTOCOL_H */ #endif /* __WINE_WINE_SERVER_PROTOCOL_H */
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
typedef unsigned int obj_handle_t; typedef unsigned int obj_handle_t;
typedef unsigned int user_handle_t; typedef unsigned int user_handle_t;
typedef unsigned short atom_t; typedef unsigned int atom_t;
typedef unsigned int process_id_t; typedef unsigned int process_id_t;
typedef unsigned int thread_id_t; typedef unsigned int thread_id_t;
typedef unsigned int data_size_t; typedef unsigned int data_size_t;
...@@ -164,7 +164,7 @@ typedef __int64 timeout_t; ...@@ -164,7 +164,7 @@ typedef __int64 timeout_t;
typedef struct typedef struct
{ {
atom_t atom; /* property atom */ atom_t atom; /* property atom */
short string; /* was atom a string originally? */ int string; /* was atom a string originally? */
lparam_t data; /* data stored in property */ lparam_t data; /* data stored in property */
} property_data_t; } property_data_t;
...@@ -2106,7 +2106,7 @@ enum message_type ...@@ -2106,7 +2106,7 @@ enum message_type
process_id_t pid; /* process owning the window */ process_id_t pid; /* process owning the window */
thread_id_t tid; /* thread owning the window */ thread_id_t tid; /* thread owning the window */
atom_t atom; /* class atom */ atom_t atom; /* class atom */
short int is_unicode; /* ANSI or unicode */ int is_unicode; /* ANSI or unicode */
@END @END
......
...@@ -31,7 +31,7 @@ my %formats = ...@@ -31,7 +31,7 @@ my %formats =
"unsigned int" => [ 4, 4, "%08x" ], "unsigned int" => [ 4, 4, "%08x" ],
"data_size_t" => [ 4, 4, "%u" ], "data_size_t" => [ 4, 4, "%u" ],
"obj_handle_t" => [ 4, 4, "%04x" ], "obj_handle_t" => [ 4, 4, "%04x" ],
"atom_t" => [ 2, 2, "%04x" ], "atom_t" => [ 4, 4, "%04x" ],
"user_handle_t" => [ 4, 4, "%08x" ], "user_handle_t" => [ 4, 4, "%08x" ],
"process_id_t" => [ 4, 4, "%04x" ], "process_id_t" => [ 4, 4, "%04x" ],
"thread_id_t" => [ 4, 4, "%04x" ], "thread_id_t" => [ 4, 4, "%04x" ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment