mutter-Xatomtype: Fix the sizes of these structs
Since we're using xcb now, not Xlib, it doesn't have the stupid silly thing where it copies all 32-bit data to 64-bit data to match the long-y-ness of it.
This commit is contained in:
parent
8df3fa4e67
commit
f8cf5e373c
@ -60,10 +60,10 @@ SOFTWARE.
|
||||
#ifndef _XATOMTYPE_H_
|
||||
#define _XATOMTYPE_H_
|
||||
|
||||
#define BOOL long
|
||||
#define SIGNEDINT long
|
||||
#define UNSIGNEDINT unsigned long
|
||||
#define RESOURCEID unsigned long
|
||||
#define BOOL int32_t
|
||||
#define SIGNEDINT int32_t
|
||||
#define UNSIGNEDINT uint32_t
|
||||
#define RESOURCEID uint32_t
|
||||
|
||||
|
||||
/* this structure may be extended, but do not change the order */
|
||||
|
Loading…
Reference in New Issue
Block a user