diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-07-04 09:01:43 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-07-04 09:01:43 +0000 |
commit | 4ef813961dc8dea8924a79e0954d5b6da12e77c0 (patch) | |
tree | 863d7a9fc8fda405857bc6f7aad1f349e7884ec3 /render | |
parent | 7dc547252af3b23652b1d496957645726c7125a4 (diff) |
provide the uint datatype on WIN32
Diffstat (limited to 'render')
-rw-r--r-- | render/picture.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/render/picture.c b/render/picture.c index b4c59f19f..e8f404d33 100644 --- a/render/picture.c +++ b/render/picture.c @@ -42,6 +42,10 @@ #include "servermd.h" #include "picturestr.h" +#ifdef WIN32 +typedef unsigned int uint; +#endif + int PictureScreenPrivateIndex = -1; int PictureWindowPrivateIndex; int PictureGeneration; |