perfdata.h
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:2k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  3.     This program is free software; you can redistribute it and/or modify
  4.     it under the terms of the GNU General Public License as published by
  5.     the Free Software Foundation; either version 2 of the License, or
  6.     (at your option) any later version.
  7.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. #ifndef __INC_PERFDATA_H
  16. #define __INC_PERFDATA_H
  17. typedef PERF_DATA_BLOCK             PERF_DATA,      *PPERF_DATA; 
  18. typedef PERF_OBJECT_TYPE            PERF_OBJECT,    *PPERF_OBJECT; 
  19. typedef PERF_INSTANCE_DEFINITION    PERF_INSTANCE,  *PPERF_INSTANCE; 
  20. typedef PERF_COUNTER_DEFINITION     PERF_COUNTER,   *PPERF_COUNTER; 
  21.  
  22. DWORD   GetPerfData (HKEY       hPerfKey, 
  23.                      LPTSTR     szObjectIndex, 
  24.                      PPERF_DATA *ppData, 
  25.                      DWORD      *pDataSize); 
  26.  
  27. DWORD   GetPerfTitleSz (HKEY       hKeyMachine, 
  28.                         HKEY       hKeyPerf, 
  29.                         LPTSTR     *TitleBuffer, 
  30.                         LPTSTR     *TitleSz[], 
  31.                         DWORD      *TitleLastIdx); 
  32.  
  33. PPERF_OBJECT    FirstObject (PPERF_DATA pData); 
  34. PPERF_OBJECT    NextObject (PPERF_OBJECT pObject); 
  35. PPERF_OBJECT    FindObject (PPERF_DATA pData, DWORD TitleIndex); 
  36. PPERF_OBJECT    FindObjectN (PPERF_DATA pData, DWORD N); 
  37. PPERF_INSTANCE  FirstInstance (PPERF_OBJECT pObject); 
  38. PPERF_INSTANCE  NextInstance (PPERF_INSTANCE pInst); 
  39. PPERF_INSTANCE  FindInstanceN (PPERF_OBJECT pObject, DWORD N); 
  40. PPERF_INSTANCE  FindInstanceParent (PPERF_INSTANCE pInst, PPERF_DATA pData); 
  41. LPTSTR          InstanceName (PPERF_INSTANCE pInst); 
  42.  
  43. PPERF_COUNTER   FirstCounter (PPERF_OBJECT pObject); 
  44. PPERF_COUNTER   NextCounter (PPERF_COUNTER pCounter); 
  45. PPERF_COUNTER   FindCounter (PPERF_OBJECT pObject, DWORD TitleIndex); 
  46. PVOID           CounterData (PPERF_INSTANCE pInst, PPERF_COUNTER pCount); 
  47. #endif