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:
parent
2b418b4d88
commit
8b744412aa
|
@ -26,8 +26,10 @@
|
||||||
#ifndef XCURSOR_H
|
#ifndef XCURSOR_H
|
||||||
#define XCURSOR_H
|
#define XCURSOR_H
|
||||||
|
|
||||||
typedef int XcursorBool;
|
#include <stdint.h>
|
||||||
typedef unsigned int XcursorUInt;
|
|
||||||
|
typedef int XcursorBool;
|
||||||
|
typedef uint32_t XcursorUInt;
|
||||||
|
|
||||||
typedef XcursorUInt XcursorDim;
|
typedef XcursorUInt XcursorDim;
|
||||||
typedef XcursorUInt XcursorPixel;
|
typedef XcursorUInt XcursorPixel;
|
||||||
|
|
Loading…
Reference in New Issue