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.

39 lines
1015 B

  1. /*********************************************************
  2. TITLE: CIUTIL.H
  3. DATE CREATED: January 16, 1992
  4. DESCRIPTION:
  5. This is the header file associated with the utility
  6. library ciutil.c. It will contain basic sorts of
  7. useful tool functions that may be used in lots of
  8. different places.
  9. **********************************************************/
  10. #ifndef _CIUTIL_H
  11. #define _CIUTIL_H
  12. /*======================================================================*/
  13. /*******
  14. INCLUDES
  15. ********/
  16. #include <windows.h>
  17. #include "cmdint.h"
  18. LPWSTR WINAPI SkipWhitespace(LPWSTR pch);
  19. int WINAPI ReportError (IStream *piistm, ERRC &errc);
  20. LPWSTR WINAPI StripTrailingBlanks(LPWSTR);
  21. VOID WINAPI StripLeadingBlanks(LPWSTR pchSource);
  22. BOOL WINAPI IsStringOfDigits(char *szNumericString);
  23. LONG WINAPI StrToLong (LPWSTR lszBuf);
  24. LPWSTR GetNextDelimiter(LPWSTR pwstrStart, WCHAR wcDelimiter);
  25. HRESULT ParseKeyAndValue(LPVOID pBlockMgr, LPWSTR pwstrLine, KEYVAL **ppkvOut);
  26. #endif /* _CIUTIL_H */