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.

49 lines
796 B

  1. #ifndef _PRIV_H_
  2. #define _PRIV_H_
  3. #include <windows.h>
  4. #include <windowsx.h>
  5. #include <ccstock.h>
  6. #include <debug.h>
  7. #ifdef __cplusplus
  8. #include <shstr.h>
  9. #endif
  10. #include <stdlib.h>
  11. #include <stdio.h>
  12. #include "resource.h"
  13. #include "parse.h"
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. // Helper functions
  18. // (Don't link to shlwapi.dll so this is a stand-alone tool)
  19. //
  20. void PathUnquoteSpaces(LPTSTR lpsz);
  21. BOOL StrTrim(LPSTR pszTrimMe, LPCSTR pszTrimChars);
  22. // Trace and Dump flags
  23. #define BF_ONOPEN 0x00000010
  24. // Parse file flags
  25. #define PFF_WHITESPACE 0x00000001
  26. #define PFF_INF 0x00000002
  27. #define PFF_HTML 0x00000004
  28. #define PFF_JS 0x00000008
  29. #define PFF_HTC 0x00000010
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33. #endif // _PRIV_H_