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

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1996 - 1999
  3. Module Name:
  4. clutils.h
  5. Abstract:
  6. This module defines internal utilities for CLI unit
  7. Author:
  8. Ran Kalach (rankala) 3/8/00
  9. --*/
  10. #ifndef _CLIUTILS_
  11. #define _CLIUTILS_
  12. HRESULT ValidateLimitsArg(IN DWORD dwArgValue, IN DWORD dwArgId, IN DWORD dwMinLimit, IN DWORD dwMaxLimit);
  13. HRESULT SaveServersPersistData(void);
  14. HRESULT CliGetVolumeDisplayName(IN IUnknown *pResourceUnknown, OUT WCHAR **ppDisplayName);
  15. HRESULT ShortSizeFormat64(__int64 dw64, LPTSTR szBuf);
  16. HRESULT FormatFileTime(IN FILETIME ft, OUT WCHAR **ppTimeString);
  17. LPTSTR AddCommas(DWORD dw, LPTSTR pszResult, int nResLen);
  18. #endif // _CLIUTILS_