SUPPORT.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*++
  2. Copyright (c) 1994-1995  Microsoft Corporation
  3. Module Name:
  4.     Support.h
  5. Abstract:
  6.     Support routine interfaces
  7. Author:
  8.     Matthew Bradburn    [mattbr]        05-Oct-1994
  9. Revision History:
  10. --*/
  11. extern VOID
  12. ArrangeCommandLine(
  13.     PTCHAR **pargv,
  14.     int *pargc
  15.     );
  16. extern BOOLEAN
  17. IsNtldr(
  18.     PTCHAR pch
  19.     );
  20. extern BOOLEAN
  21. IsUncRoot(
  22.     PTCHAR pch
  23.     );
  24. extern VOID
  25. DisplayMsg(DWORD MsgNum, ... );
  26. extern VOID
  27. DisplayErr(PTCHAR Prefix, DWORD MsgNum, ... );
  28. extern VOID
  29. InitializeIoStreams();
  30. #define lstrchr wcschr
  31. #define lstricmp _wcsicmp
  32. #define lstrnicmp _wcsnicmp
  33. extern ULONG
  34. FormatFileSize(
  35.     IN  PLARGE_INTEGER FileSize,
  36.     IN  DWORD          Width,
  37.     OUT PTCHAR         FormattedSize,
  38.     IN  BOOLEAN        WithCommas
  39.     );