PlotterHMI/machine/comm/typedef.h
2024-02-06 14:19:53 +08:00

17 lines
376 B
C

#ifndef TYPEDEF_H
#define TYPEDEF_H
typedef int BOOL;
typedef unsigned char BYTE;
typedef unsigned short int WORD;
typedef unsigned long int DWORD;
typedef unsigned char u8;
typedef unsigned short int u16;
typedef unsigned int u32;
typedef char s8;
typedef short int s16;
typedef int s32;
#endif // TYPEDEF_H