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:
Jasper St. Pierre 2015-06-23 11:46:29 -07:00
parent 8df3fa4e67
commit f8cf5e373c

View File

@ -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 */