use <stdint.h> everywhere

This commit is contained in:
tth
2021-05-20 09:31:28 +02:00
parent 802ec6e9c1
commit 72e162e4cf
52 changed files with 67 additions and 8 deletions

View File

@@ -4,14 +4,14 @@
* http://la.buvette.org/photos/cumul
*/
#define FIMG_VERSION 150
#define FIMG_VERSION 151
/*
* in memory descriptor
*/
#define MAGIC_FIMG 0x00F11F00
typedef struct {
unsigned long magic;
uint32_t magic;
int width;
int height;
int type;
@@ -31,7 +31,7 @@ typedef struct {
#define MAGIC_AREA51 0xA5EA0051
typedef struct {
unsigned long magic;
uint32_t magic;
int w, h;
int x, y;
int flags;
@@ -57,7 +57,7 @@ typedef struct {
#define CONTRAST_POW2 2
#define CONTRAST_COS01 3
#define CONTRAST_COS010 4
#define CONTRAST_XPER 5 /* use with caution */
/*
* core module
*/