1
0
mirror of https://github.com/KDE/krfb synced 2026-07-01 07:41:17 -07:00

fix compiling on Slackware 12.1

svn path=/branches/KDE/3.5/kdenetwork/krfb/; revision=794662
This commit is contained in:
Giovanni Venturi
2008-04-08 09:16:17 +00:00
parent 5a0d155e9d
commit 08f208f8ea

View File

@@ -40,7 +40,14 @@ extern "C"
/* TODO: this stuff has to go into autoconf */
typedef unsigned char CARD8;
typedef unsigned short CARD16;
#ifdef LONG64
typedef unsigned long CARD64;
typedef unsigned int CARD32;
#else
typedef unsigned long CARD32;
#endif
typedef CARD32 Pixel;
/* typedef CARD32 KeySym; */
#ifndef __osf__