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

Windows编程

开发平台:

Visual C++

  1. // data type and constant definitions used by mainwnd.c
  2. #include <pdh.h>
  3. typedef struct _CounterInfoBlock {
  4.     struct _CounterInfoBlock *pNext;
  5.     TCHAR   szCounterPath[MAX_PATH];
  6.     HCOUNTER    hCounter;
  7.     PPDH_RAW_COUNTER    pCounterArray;
  8.     DWORD       dwFirstIndex;
  9.     DWORD       dwNextIndex;
  10.     DWORD       dwLastIndex;
  11.     PDH_STATISTICS  pdhCurrentStats;
  12.     double      dLastValue;
  13. } CIB, *PCIB;
  14. // global functions found in mainwnd.c
  15. LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);