Leaked source code of windows server 2003
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.

32 lines
1.3 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: perf_str.h
  4. //
  5. // Module: Common Strings for all Modules to Utilize
  6. //
  7. // Synopsis: Header file for DUN 1.2 perf stat strings. Note that the
  8. // contents of this header should be specific to perf stats.
  9. //
  10. // Copyright (c) 1997-1998 Microsoft Corporation
  11. //
  12. // Author: nickball Created 10/14/98
  13. //
  14. //+----------------------------------------------------------------------------
  15. #ifndef _CM_PERF_STR
  16. #define _CM_PERF_STR
  17. //
  18. // the following reg key and values are where Dialup 1.2 store the perfmon data
  19. // for Windows 95/98Dial-Up Networking
  20. // Win9x support upto two PPP/PPTP sessions, the reg key is first come first serve
  21. //
  22. const TCHAR* const c_pszDialupPerfKey = TEXT("PerfStats\\StatData");
  23. const TCHAR* const c_pszDialupTotalBytesRcvd = TEXT("\\TotalBytesRecvd");
  24. const TCHAR* const c_pszDialupTotalBytesXmit = TEXT("\\TotalBytesXmit");
  25. const TCHAR* const c_pszDialupConnectSpeed = TEXT("\\ConnectSpeed");
  26. const TCHAR* const c_pszDialup_2_TotalBytesRcvd = TEXT(" #2\\TotalBytesRecvd");
  27. const TCHAR* const c_pszDialup_2_TotalBytesXmit = TEXT(" #2\\TotalBytesXmit");
  28. const TCHAR* const c_pszDialup_2_ConnectSpeed = TEXT(" #2\\ConnectSpeed");
  29. #endif // _CM_PERF_STR