mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-03 10:15:19 +00:00
13 lines
426 B
C
13 lines
426 B
C
|
#ifndef WALLYBOOT
|
||
|
#define WALLYBOOT 10000
|
||
|
|
||
|
#include <stdint.h>
|
||
|
typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
|
||
|
typedef unsigned char BYTE; /* char must be 8-bit */
|
||
|
typedef uint16_t WORD; /* 16-bit unsigned integer */
|
||
|
typedef uint32_t DWORD; /* 32-bit unsigned integer */
|
||
|
typedef uint64_t QWORD; /* 64-bit unsigned integer */
|
||
|
typedef WORD WCHAR;
|
||
|
|
||
|
#endif // WALLYBOOT
|