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.

39 lines
2.1 KiB

  1. /**INC+**********************************************************************/
  2. /* Header: wdcgperf.h */
  3. /* */
  4. /* Purpose: Performance Monitoring - portable include file */
  5. /* */
  6. /* Copyright(C) Microsoft Corporation 1997 */
  7. /* */
  8. /****************************************************************************/
  9. /** Changes:
  10. * $Log: Y:/logs/h/dcl/wdcgperf.h_v $
  11. *
  12. * Rev 1.1 15 Jul 1997 15:31:34 MD
  13. * SFR1029: Create performance build
  14. **/
  15. /**INC-**********************************************************************/
  16. #ifndef _H_WDCGPERF
  17. #define _H_WDCGPERF
  18. /****************************************************************************/
  19. /* */
  20. /* INCLUDES */
  21. /* */
  22. /****************************************************************************/
  23. /****************************************************************************/
  24. /* Determine our target Windows platform and include the appropriate header */
  25. /* file. */
  26. /* Currently we support: */
  27. /* */
  28. /* Windows 3.1 : ddcgperf.h */
  29. /* Windows NT : ndcgperf.h */
  30. /* */
  31. /****************************************************************************/
  32. #ifdef OS_WIN16
  33. #include <ddcgperf.h>
  34. #elif defined( OS_WIN32 )
  35. #include <ndcgperf.h>
  36. #endif
  37. #endif /* _H_WDCGPERF */