PlotterHMI/machine/comm/typedef.h

17 lines
376 B
C
Raw Permalink Normal View History

2024-02-06 06:19:53 +00:00
#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