Use fixed size integer type

This type is meant to be 4 bytes large as seen in _XcursorReadUInt which
always reads 4 bytes. An unsigned int is often 4 bytes large but this
isnt' guaranteed so it is cleaner to use the exact type we want.
This commit is contained in:
Valentin 2020-08-30 11:08:42 +02:00 committed by Simon Ser
parent 2b418b4d88
commit 8b744412aa
1 changed files with 4 additions and 2 deletions

View File

@ -26,8 +26,10 @@
#ifndef XCURSOR_H
#define XCURSOR_H
typedef int XcursorBool;
typedef unsigned int XcursorUInt;
#include <stdint.h>
typedef int XcursorBool;
typedef uint32_t XcursorUInt;
typedef XcursorUInt XcursorDim;
typedef XcursorUInt XcursorPixel;