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.

26 lines
719 B

  1. /* File: dcmds.h */
  2. /**************************************************************************/
  3. /***** DETECT COMPONENT - Header file for detect commands
  4. /**************************************************************************/
  5. /* Null pointer defs */
  6. #define pbNull ((PB)NULL)
  7. #define szNull ((SZ)NULL)
  8. #define rgszNull ((RGSZ)NULL)
  9. #define pfhNull ((PFH)NULL)
  10. #define hNull ((HANDLE)NULL)
  11. /* Size of buffer for receive ltoa() strings */
  12. #define cbLongStrMax 33
  13. /* Detect command Return Code */
  14. typedef USHORT DRC;
  15. /* From: files.c */
  16. CB APIENTRY CbBoolResultStr(BOOL, SZ, CB);
  17. CB APIENTRY CbLongResultStr(LONG, SZ, CB);
  18. /* From: sys1.c */
  19. SZ FAR PASCAL SzGetEnv(SZ);
  20. CCHP FAR PASCAL CchpStrDelim(SZ, SZ);