aboutsummaryrefslogtreecommitdiff
path: root/libXt/include/X11/IntrinsicP.h
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2013-07-26 17:40:44 +0200
committermarha <marha@users.sourceforge.net>2013-07-26 17:40:44 +0200
commitff986553659472cf191804eadb13c21e8f2b44c0 (patch)
tree70a2a53fc9450771e6369e0789304939d0c6f701 /libXt/include/X11/IntrinsicP.h
parent78d1e1787d6a2ecc3ad765bd1689a600e44ed13b (diff)
downloadvcxsrv-ff986553659472cf191804eadb13c21e8f2b44c0.tar.gz
vcxsrv-ff986553659472cf191804eadb13c21e8f2b44c0.tar.bz2
vcxsrv-ff986553659472cf191804eadb13c21e8f2b44c0.zip
Solved runtime problems when compiled for 64-bit1.14.2.1
Diffstat (limited to 'libXt/include/X11/IntrinsicP.h')
-rw-r--r--libXt/include/X11/IntrinsicP.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libXt/include/X11/IntrinsicP.h b/libXt/include/X11/IntrinsicP.h
index bb6570bbf..d3007ee07 100644
--- a/libXt/include/X11/IntrinsicP.h
+++ b/libXt/include/X11/IntrinsicP.h
@@ -52,16 +52,16 @@ SOFTWARE.
/*
* Field sizes and offsets of XrmResource must match those of XtResource.
- * Type long is used instead of XrmQuark here because XrmQuark and String
+ * Type intptr_t is used instead of XrmQuark here because XrmQuark and String
* are not the same size on all systems.
*/
typedef struct {
- long xrm_name; /* Resource name quark */
- long xrm_class; /* Resource class quark */
- long xrm_type; /* Resource representation type quark */
+ intptr_t xrm_name; /* Resource name quark */
+ intptr_t xrm_class; /* Resource class quark */
+ intptr_t xrm_type; /* Resource representation type quark */
Cardinal xrm_size; /* Size in bytes of representation */
int xrm_offset; /* -offset-1 */
- long xrm_default_type; /* Default representation type quark */
+ intptr_t xrm_default_type; /* Default representation type quark */
XtPointer xrm_default_addr; /* Default resource address */
} XrmResource, *XrmResourceList;