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.

42 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 2000-2001, Microsoft Corporation All rights reserved.
  3. Module Name:
  4. helpapis.h
  5. Abstract:
  6. Header over util.c
  7. APIs found in this file:
  8. Revision History:
  9. 17 Mar 2001 v-michka Created.
  10. --*/
  11. #ifndef HELPAPIS_H
  12. #define HELPAPIS_H
  13. // Forward declares
  14. LPCWSTR SP_GetFmtValueW(LPCWSTR lpch, int *lpw);
  15. int SP_PutNumberW(LPWSTR lpstr, ULONG64 n, int limit, DWORD radix, int uppercase);
  16. void SP_ReverseW(LPWSTR lpFirst, LPWSTR lpLast);
  17. DWORD GB18030Helper(DWORD cpg, DWORD dw, LPSTR lpMB, int cchMB, LPWSTR lpWC, int cchWC, LPCPINFO lpCPI);
  18. void CaseHelper(LPWSTR pchBuff, DWORD cch, BOOL fUpper);
  19. int CompareHelper(LPCWSTR lpsz1, LPCWSTR lpsz2, BOOL fCaseSensitive);
  20. BOOL GetOpenSaveFileHelper(LPOPENFILENAMEW lpofn, BOOL fOpenFile);
  21. HWND FindReplaceTextHelper(LPFINDREPLACEW lpfr, BOOL fFindText);
  22. BOOL RtlIsTextUnicode(PVOID Buffer, ULONG Size, PULONG Result);
  23. // These functions are in updres.c
  24. HANDLE BeginUpdateResourceInternalW(LPCWSTR pwch, BOOL bDeleteExistingResources);
  25. BOOL UpdateResourceInternalW(HANDLE hUpdate, LPCWSTR lpType, LPCWSTR lpName, WORD language, LPVOID lpData, ULONG cb);
  26. BOOL EndUpdateResourceInternalW(HANDLE hUpdate, BOOL fDiscard);
  27. #endif // HELPAPIS_H