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.

38 lines
538 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. sptlibp.h
  5. Abstract:
  6. private header for SPTLIB.DLL
  7. Environment:
  8. User mode only
  9. Revision History:
  10. 4/10/2000 - created
  11. --*/
  12. #include <stdio.h> // required for sscanf() function
  13. #include <windows.h>
  14. #include <cmdhelp.h>
  15. #if 0
  16. #ifndef ARGUMENT_PRESENT
  17. #define ARGUMENT_PRESENT(ArgumentPointer) (\
  18. (CHAR *)(ArgumentPointer) != (CHAR *)(NULL) )
  19. #endif
  20. #endif // 0
  21. BOOL
  22. CmdHelpValidateString(
  23. IN PCHAR String,
  24. IN DWORD ValidChars
  25. );