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
746 B

  1. // Copyright 1995-1997 Microsoft Corporation. All Rights Reserved.
  2. // This header file can only be used by non-UNICODE programs
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif
  6. #ifndef _HHCTRLEX_H_
  7. #define _HHCTRLEX_H_
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif // __cplusplus
  11. PSTR stristr(PCSTR pszMain, PCSTR pszSub); // case-insensitive string search
  12. PSTR FirstNonSpace(PCSTR psz); // return pointer to first non-space character
  13. PSTR StrChr(PCSTR pszString, char ch); // DBCS-aware character search
  14. PSTR StrRChr(PCSTR pszString, char ch); // DBCS-aware character search
  15. DWORD WinHelpHashFromSz(PCSTR pszKey); // converts string into a WinHelp-compatible hash number
  16. #ifdef __cplusplus
  17. }
  18. #endif // __cplusplus
  19. #endif // _HHCTRLEX_H_