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.

28 lines
683 B

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: util.h
  4. //
  5. // Module: CMDL32.EXE
  6. //
  7. // Synopsis: Header file for utility routines specific to CMDL
  8. //
  9. // Copyright (c) 1996-1998 Microsoft Corporation
  10. //
  11. // Author: nickball Created 04/08/98
  12. //
  13. //+----------------------------------------------------------------------------
  14. #ifndef _CMDL_UTIL_INC
  15. #define _CMDL_UTIL_INC
  16. //
  17. // Function Protoypes
  18. //
  19. BOOL IsErrorForUnique(DWORD dwErrCode, LPSTR lpszFile);
  20. LPTSTR GetVersionFromFile(LPSTR lpszFile);
  21. BOOL CreateTempDir(LPTSTR pszDir);
  22. TCHAR GetLastChar(LPTSTR pszStr);
  23. LPTSTR *GetCmArgV(LPTSTR pszCmdLine);
  24. #endif // _CMDL_UTIL_INC