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.

30 lines
877 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1998 - 1999
  6. //
  7. // File: format.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef HEADER_FORMAT
  11. #define HEADER_FORMAT
  12. void PrintNewLine(NETDIAG_PARAMS *pParams, int cNewLine);
  13. void PrintTestTitleResult(NETDIAG_PARAMS *pParams,
  14. UINT idsTestLongName,
  15. UINT idsTestShortName,
  16. BOOL fPerformed,
  17. HRESULT hr,
  18. int nIndent);
  19. void PrintError(NETDIAG_PARAMS *pParams, UINT idsContext, HRESULT hr);
  20. LPTSTR MAP_YES_NO(BOOL fYes);
  21. LPTSTR MAP_ON_OFF(BOOL fOn);
  22. LPTSTR MapWinsNodeType(UINT Parm);
  23. LPTSTR MapAdapterType(UINT type);
  24. #endif