64 bit fix

This commit is contained in:
Adam D. Ruppe 2013-06-04 15:42:31 -04:00
parent 17a4b8b601
commit 28d5c5a023
1 changed files with 3 additions and 1 deletions

View File

@ -1475,7 +1475,7 @@ enum ColorMapNotification:int
arch_ulong green_mask; arch_ulong green_mask;
arch_ulong blue_mask; arch_ulong blue_mask;
XPointer obdata; /* hook for the object routines to hang on */ XPointer obdata; /* hook for the object routines to hang on */
struct f { /* image manipulation routines */ struct F { /* image manipulation routines */
XImage* function( XImage* function(
XDisplay* /* display */, XDisplay* /* display */,
Visual* /* visual */, Visual* /* visual */,
@ -1493,6 +1493,8 @@ enum ColorMapNotification:int
XImage function(XImage *, int, int, uint, uint)sub_image; XImage function(XImage *, int, int, uint, uint)sub_image;
int function(XImage *, int)add_pixel; int function(XImage *, int)add_pixel;
} }
F f;
} }
version(X86_64) static assert(XImage.sizeof == 136); version(X86_64) static assert(XImage.sizeof == 136);