mirror of
https://github.com/reactos/reactos.git
synced 2026-06-22 03:12:49 +08:00
15 lines
233 B
C
15 lines
233 B
C
|
|
#define CPU_UNINT unsigned int
|
|
#define CPU_INT int
|
|
|
|
#define CPU_BYTE unsigned char
|
|
|
|
/* Prototypes for misc stuff */
|
|
|
|
|
|
/* Convert Bit index to int */
|
|
CPU_UNINT ConvertBitToByte(CPU_BYTE *bit);
|
|
CPU_UNINT GetMaskByte(CPU_BYTE *bit);
|
|
|
|
|