Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
507 B

  1. /* casts.h - define useful casts for calling DOS 5 API routines
  2. **
  3. */
  4. #define FALSE 0
  5. #define TRUE 1
  6. typedef unsigned char byte;
  7. typedef unsigned int word;
  8. typedef unsigned long dword;
  9. typedef char * NPC;
  10. typedef int * NPI;
  11. typedef long * NPL;
  12. typedef unsigned int * NPU;
  13. typedef unsigned long * NPUL;
  14. typedef char far * FPC;
  15. typedef int far * FPI;
  16. typedef long far * FPL;
  17. typedef unsigned int far * FPU;
  18. typedef unsigned long far * FPUL;