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.

Signed-off-by: Valentin Kettner <vakevk@gmail.com>
This commit is contained in:
Valentin 2020-09-04 12:12:56 +02:00
parent 9b7171f955
commit fc3beac71f

View File

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