亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? winperf.pas

?? 面對面 木馬生成器 完整代碼 程序僅提供測試學習 全局鉤子查找句柄截獲 使用ASP收信 收信地址明文(測試而已沒加密) //本軟件主要是截獲賬號和密碼 帶了個簡單發信
?? PAS
?? 第 1 頁 / 共 3 頁
字號:
{******************************************************************}
{                                                       	   }
{       Borland Delphi Runtime Library                  	   }
{       Performance Data Helper Messages interface unit            }
{ 								   }
{ Portions created by Microsoft are 				   }
{ Copyright (C) 1995-1999 Microsoft Corporation. 		   }
{ All Rights Reserved. 						   }
{ 								   }
{ The original file is: WinPerf.pas, released 3 Dec 1999. 	   }
{ The original Pascal code is: WinPerf.pas, released 3 Dec 1999.   }
{ The initial developer of the Pascal code is Marcel van Brakel    }
{ (brakelm@chello.nl).                      			   }
{ 								   }
{ Portions created by Marcel van Brakel are			   }
{ Copyright (C) 1999 Marcel van Brakel.				   }
{ 								   }
{ Obtained through:                               	           }
{ Joint Endeavour of Delphi Innovators (Project JEDI)              }
{								   }
{ You may retrieve the latest version of this file at the Project  }
{ JEDI home page, located at http://delphi-jedi.org                }
{								   }
{ The contents of this file are used with permission, subject to   }
{ the Mozilla Public License Version 1.1 (the "License"); you may  }
{ not use this file except in compliance with the License. You may }
{ obtain a copy of the License at                                  }
{ http://www.mozilla.org/NPL/NPL-1_1Final.html 	                   }
{                                                                  }
{ Software distributed under the License is distributed on an 	   }
{ "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or   }
{ implied. See the License for the specific language governing     }
{ rights and limitations under the License. 			   }
{ 								   }
{******************************************************************}

unit WinPerf;

interface

uses
  Windows;

type LONG = Longint;

//  Header file for the Performance Monitor data.
//
//  This file contains the definitions of the data structures returned
//  by the Configuration Registry in response to a request for
//  performance data.  This file is used by both the Configuration
//  Registry and the Performance Monitor to define their interface.
//  The complete interface is described here, except for the name
//  of the node to query in the registry.  It is
//
//                 HKEY_PERFORMANCE_DATA.
//
//  By querying that node with a subkey of "Global" the caller will
//  retrieve the structures described here.
//
//  There is no need to RegOpenKey() the reserved handle HKEY_PERFORMANCE_DATA,
//  but the caller should RegCloseKey() the handle so that network transports
//  and drivers can be removed or installed (which cannot happen while
//  they are open for monitoring.)  Remote requests must first
//  RegConnectRegistry().

//  Data structure definitions.

//  In order for data to be returned through the Configuration Registry
//  in a system-independent fashion, it must be self-describing.

//  In the following, all offsets are in bytes.

//
//  Data is returned through the Configuration Registry in a
//  a data block which begins with a _PERF_DATA_BLOCK structure.
//

const
  PERF_DATA_VERSION  = 1;
  {$EXTERNALSYM PERF_DATA_VERSION}
  PERF_DATA_REVISION = 1;
  {$EXTERNALSYM PERF_DATA_REVISION}

type
  PPerfDataBlock = ^TPerfDataBlock;
  _PERF_DATA_BLOCK = record
    Signature: array [0..3] of WCHAR;   // Signature: Unicode "PERF"
    LittleEndian: DWORD;                // 0 = Big Endian, 1 = Little Endian
    Version: DWORD;                     // Version of these data structures
                                        // starting at 1
    Revision: DWORD;                    // Revision of these data structures
                                        // starting at 0 for each Version
    TotalByteLength: DWORD;             // Total length of data block
    HeaderLength: DWORD;                // Length of this structure
    NumObjectTypes: DWORD;              // Number of types of objects
                                        // being reported
    DefaultObject: LONG;                // Object Title Index of default
                                        // object to display when data from
                                        // this system is retrieved (-1 =
                                        // none, but this is not expected to
                                        // be used)
    SystemTime: SYSTEMTIME;             // Time at the system under
                                        // measurement
    PerfTime: LARGE_INTEGER;            // Performance counter value
                                        // at the system under measurement
    PerfFreq: LARGE_INTEGER;            // Performance counter frequency
                                        // at the system under measurement
    PerfTime100nSec: LARGE_INTEGER;     // Performance counter time in 100 nsec
                                        // units at the system under measurement
    SystemNameLength: DWORD;            // Length of the system name
    SystemNameOffset: DWORD;            // Offset, from beginning of this
                                        // structure, to name of system
                                        // being measured
  end;
  {$EXTERNALSYM _PERF_DATA_BLOCK}
  PERF_DATA_BLOCK = _PERF_DATA_BLOCK;
  {$EXTERNALSYM PERF_DATA_BLOCK}
  PPERF_DATA_BLOCK = ^PERF_DATA_BLOCK;
  {$EXTERNALSYM PPERF_DATA_BLOCK}
  TPerfDataBlock = _PERF_DATA_BLOCK;

//
//  The _PERF_DATA_BLOCK structure is followed by NumObjectTypes of
//  data sections, one for each type of object measured.  Each object
//  type section begins with a _PERF_OBJECT_TYPE structure.
//

  PPerfObjectType = ^TPerfObjectType;
  _PERF_OBJECT_TYPE = record
    TotalByteLength: DWORD;             // Length of this object definition
                                        // including this structure, the
                                        // counter definitions, and the
                                        // instance definitions and the
                                        // counter blocks for each instance:
                                        // This is the offset from this
                                        // structure to the next object, if
                                        // any
    DefinitionLength: DWORD;            // Length of object definition,
                                        // which includes this structure
                                        // and the counter definition
                                        // structures for this object: this
                                        // is the offset of the first
                                        // instance or of the counters
                                        // for this object if there is
                                        // no instance
    HeaderLength: DWORD;                // Length of this structure: this
                                        // is the offset to the first
                                        // counter definition for this
                                        // object
    ObjectNameTitleIndex: DWORD;        // Index to name in Title Database
    ObjectNameTitle: LPWSTR;            // Initially NULL, for use by
                                        // analysis program to point to
                                        // retrieved title string
    ObjectHelpTitleIndex: DWORD;        // Index to Help in Title Database
    ObjectHelpTitle: LPWSTR;            // Initially NULL, for use by
                                        // analysis program to point to
                                        // retrieved title string
    DetailLevel: DWORD;                 // Object level of detail (for
                                        // controlling display complexity);
                                        // will be min of detail levels
                                        // for all this object's counters
    NumCounters: DWORD;                 // Number of counters in each
                                        // counter block (one counter
                                        // block per instance)
    DefaultCounter: LONG;               // Default counter to display when
                                        // this object is selected, index
                                        // starting at 0 (-1 = none, but
                                        // this is not expected to be used)
    NumInstances: LONG;                 // Number of object instances
                                        // for which counters are being
                                        // returned from the system under
                                        // measurement. If the object defined
                                        // will never have any instance data
                                        // structures (PERF_INSTANCE_DEFINITION)
                                        // then this value should be -1, if the
                                        // object can have 0 or more instances,
                                        // but has none present, then this
                                        // should be 0, otherwise this field
                                        // contains the number of instances of
                                        // this counter.
    CodePage: DWORD;                    // 0 if instance strings are in
                                        // UNICODE, else the Code Page of
                                        // the instance names
    PerfTime: LARGE_INTEGER;            // Sample Time in "Object" units
    PerfFreq: LARGE_INTEGER;            // Frequency of "Object" units in
                                        // counts per second.
  end;
  {$EXTERNALSYM _PERF_OBJECT_TYPE}
  PERF_OBJECT_TYPE = _PERF_OBJECT_TYPE;
  {$EXTERNALSYM PERF_OBJECT_TYPE}
  PPERF_OBJECT_TYPE = ^PERF_OBJECT_TYPE;
  {$EXTERNALSYM PPERF_OBJECT_TYPE}
  TPerfObjectType = _PERF_OBJECT_TYPE;

const
  PERF_NO_INSTANCES = -1;               // no instances (see NumInstances above)
  {$EXTERNALSYM PERF_NO_INSTANCES}

//
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
//
//  PERF_COUNTER_DEFINITION.CounterType field values
//
//
//        Counter ID Field Definition:
//
//   3      2        2    2    2        1        1    1
//   1      8        4    2    0        6        2    0    8                0
//  +--------+--------+----+----+--------+--------+----+----+----------------+
//  |Display |Calculation  |Time|Counter |        |Ctr |Size|                |
//  |Flags   |Modifiers    |Base|SubType |Reserved|Type|Fld |   Reserved     |
//  +--------+--------+----+----+--------+--------+----+----+----------------+
//
//
//  The counter type is the "or" of the following values as described below
//
//  select one of the following to indicate the counter's data size
//

  PERF_SIZE_DWORD         = $00000000;
  {$EXTERNALSYM PERF_SIZE_DWORD}
  PERF_SIZE_LARGE         = $00000100;
  {$EXTERNALSYM PERF_SIZE_LARGE}
  PERF_SIZE_ZERO          = $00000200;      // for Zero Length Fields
  {$EXTERNALSYM PERF_SIZE_ZERO}
  PERF_SIZE_VARIABLE_LEN  = $00000300;      // length is in CounterLength Fields
                                            //  of Counter Definition struct
  {$EXTERNALSYM PERF_SIZE_VARIABLE_LEN}

//
//  select one of the following values to indicate the counter field usage
//

  PERF_TYPE_NUMBER        = $00000000;      // a number (not a counter)
  {$EXTERNALSYM PERF_TYPE_NUMBER}
  PERF_TYPE_COUNTER       = $00000400;      // an increasing numeric Value
  {$EXTERNALSYM PERF_TYPE_COUNTER}
  PERF_TYPE_TEXT          = $00000800;      // a text Fields
  {$EXTERNALSYM PERF_TYPE_TEXT}
  PERF_TYPE_ZERO          = $00000C00;      // displays a zero
  {$EXTERNALSYM PERF_TYPE_ZERO}

//
//  If the PERF_TYPE_NUMBER field was selected, then select one of the
//  following to describe the Number
//

  PERF_NUMBER_HEX         = $00000000;     // display as HEX Value
  {$EXTERNALSYM PERF_NUMBER_HEX}
  PERF_NUMBER_DECIMAL     = $00010000;     // display as a decimal integer
  {$EXTERNALSYM PERF_NUMBER_DECIMAL}
  PERF_NUMBER_DEC_1000    = $00020000;     // display as a decimal/1000
  {$EXTERNALSYM PERF_NUMBER_DEC_1000}

//
//  If the PERF_TYPE_COUNTER value was selected then select one of the
//  following to indicate the type of counter
//

  PERF_COUNTER_VALUE      = $00000000;     // display counter Value
  {$EXTERNALSYM PERF_COUNTER_VALUE}
  PERF_COUNTER_RATE       = $00010000;     // divide ctr / delta time
  {$EXTERNALSYM PERF_COUNTER_RATE}
  PERF_COUNTER_FRACTION   = $00020000;     // divide ctr / base
  {$EXTERNALSYM PERF_COUNTER_FRACTION}
  PERF_COUNTER_BASE       = $00030000;     // base value used in fractions
  {$EXTERNALSYM PERF_COUNTER_BASE}
  PERF_COUNTER_ELAPSED    = $00040000;     // subtract counter from current time
  {$EXTERNALSYM PERF_COUNTER_ELAPSED}
  PERF_COUNTER_QUEUELEN   = $00050000;     // Use Queuelen processing func.
  {$EXTERNALSYM PERF_COUNTER_QUEUELEN}
  PERF_COUNTER_HISTOGRAM  = $00060000;     // Counter begins or ends a histogram
  {$EXTERNALSYM PERF_COUNTER_HISTOGRAM}
  PERF_COUNTER_PRECISION  = $00070000;     // divide ctr / private clock
  {$EXTERNALSYM PERF_COUNTER_PRECISION}

//
//  If the PERF_TYPE_TEXT value was selected, then select one of the
//  following to indicate the type of TEXT data.
//

  PERF_TEXT_UNICODE       = $00000000;     // type of text in text Fields
  {$EXTERNALSYM PERF_TEXT_UNICODE}
  PERF_TEXT_ASCII         = $00010000;     // ASCII using the CodePage Fields

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品中午字幕| aaa亚洲精品| 亚洲一二三四在线观看| 国产色产综合色产在线视频| 日韩欧美国产不卡| 欧美成人一区二区三区在线观看 | 欧美一二三区精品| 欧美午夜理伦三级在线观看| 欧美综合色免费| 色琪琪一区二区三区亚洲区| 欧美亚洲一区三区| 7777精品伊人久久久大香线蕉| 欧美色图在线观看| 欧美一区二区三区不卡| 精品精品国产高清a毛片牛牛| 精品免费国产二区三区| 国产亚洲va综合人人澡精品| 国产精品盗摄一区二区三区| 亚洲一区二区三区爽爽爽爽爽| 丝袜美腿亚洲一区| 九九**精品视频免费播放| 狠狠色狠狠色综合日日91app| 国产成人av一区二区三区在线 | 1000精品久久久久久久久| 国产精品福利av| 亚洲精品视频自拍| 日韩和欧美一区二区三区| 久久99最新地址| www.成人网.com| 欧美美女喷水视频| 国产精品久久久久久久浪潮网站| 中文字幕免费不卡在线| 亚洲免费观看高清完整版在线观看| 亚洲综合在线免费观看| 日本女优在线视频一区二区| 国产91丝袜在线18| 在线观看日韩av先锋影音电影院| 欧美一级日韩免费不卡| 国产精品网曝门| 欧美aaa在线| 91丨九色丨国产丨porny| 91精品国产乱码| 亚洲视频一二三区| 久久www免费人成看片高清| www.在线成人| 欧美一级二级三级蜜桃| 中文字幕中文乱码欧美一区二区| 奇米888四色在线精品| 99久久精品一区| 精品av综合导航| 午夜精品久久久久久不卡8050| 岛国精品一区二区| 久久久久久影视| 日韩专区欧美专区| 日本乱码高清不卡字幕| 国产欧美一区二区三区网站| 日韩黄色免费网站| 欧美在线观看一区二区| 国产精品国产三级国产有无不卡| 麻豆专区一区二区三区四区五区| 91国偷自产一区二区三区成为亚洲经典| 久久久九九九九| 捆绑变态av一区二区三区| 欧美人与z0zoxxxx视频| 亚洲综合小说图片| 色综合中文综合网| 国产成人综合网站| 精品日本一线二线三线不卡 | 欧美精品tushy高清| 亚洲欧美福利一区二区| 成人做爰69片免费看网站| 日韩久久免费av| 六月婷婷色综合| 欧美成人精品二区三区99精品| 婷婷久久综合九色综合绿巨人| 在线视频你懂得一区二区三区| 日韩理论片一区二区| 色综合一个色综合亚洲| 亚洲色图视频网站| 欧美视频中文字幕| 亚洲va国产天堂va久久en| 欧美日韩国产一级二级| 日韩精品高清不卡| 精东粉嫩av免费一区二区三区| 久久精品国产一区二区三区免费看| 色爱区综合激月婷婷| 亚洲国产欧美在线人成| 欧美欧美午夜aⅴ在线观看| 日韩精品国产精品| 国产精品美女久久久久av爽李琼| 岛国一区二区在线观看| 国产精品夫妻自拍| 91免费在线看| 丝袜亚洲另类欧美| 日韩你懂的电影在线观看| 国产又粗又猛又爽又黄91精品| 国产亚洲欧美中文| 成人国产一区二区三区精品| 亚洲久草在线视频| 欧美日韩精品一区二区三区| 久久99国产精品免费| 亚洲国产高清不卡| 欧美日韩一卡二卡| 国产一区二区三区四| 中文字幕一区二区三| 欧美无砖砖区免费| 久久不见久久见中文字幕免费| 国产日本一区二区| 色国产精品一区在线观看| 免费日本视频一区| 中文字幕乱码亚洲精品一区| 91福利视频在线| 久久99久久久久| 亚洲欧美电影一区二区| 日韩视频免费观看高清完整版| 国产成a人亚洲| 亚洲成人av福利| 国产精品丝袜91| 日韩三级视频在线观看| 99久久99久久久精品齐齐| 久久精品国产亚洲一区二区三区| 欧美国产丝袜视频| av不卡免费在线观看| 亚洲在线免费播放| 久久久久国产精品麻豆ai换脸 | 久草在线在线精品观看| 中文字幕色av一区二区三区| 欧美日本一区二区| a级精品国产片在线观看| 美女mm1313爽爽久久久蜜臀| 亚洲老妇xxxxxx| 中文字幕精品综合| 日韩精品一区二区三区四区| 欧美色精品在线视频| av在线不卡免费看| 国产成人精品三级麻豆| 美国三级日本三级久久99| 午夜精品aaa| 亚洲伦理在线免费看| 国产色91在线| 久久久99久久| 久久综合色天天久久综合图片| 欧美高清性hdvideosex| 欧美日韩亚洲丝袜制服| 91传媒视频在线播放| 91一区在线观看| 91在线视频观看| 91丝袜国产在线播放| aa级大片欧美| 99天天综合性| 成人av在线一区二区三区| 国产寡妇亲子伦一区二区| 精品一区二区免费在线观看| 日韩电影一区二区三区四区| 日韩在线卡一卡二| 婷婷亚洲久悠悠色悠在线播放| 性做久久久久久| 午夜伦理一区二区| 蜜臀精品一区二区三区在线观看| 日本最新不卡在线| 另类小说欧美激情| 国产激情视频一区二区在线观看 | 国内精品国产成人国产三级粉色| 免费在线成人网| 理论片日本一区| 狠狠色伊人亚洲综合成人| 国产一区二区三区精品视频| 国产一区二区女| 成人久久久精品乱码一区二区三区| 懂色av一区二区三区免费观看| 成人动漫视频在线| 欧美亚洲综合网| 日韩三级视频在线看| 国产视频911| 一区二区三区 在线观看视频| 日韩高清欧美激情| 国产麻豆91精品| 在线视频欧美区| 精品国产露脸精彩对白| 国产亚洲欧洲一区高清在线观看| 国产精品女上位| 午夜精品久久一牛影视| 国产中文字幕一区| 色欧美日韩亚洲| 精品三级av在线| 亚洲日本中文字幕区| 日韩成人免费在线| 成人午夜电影久久影院| 精品视频1区2区| 久久久久97国产精华液好用吗 | 欧美精品乱人伦久久久久久| 精品久久久久久久久久久久包黑料 | 国产美女在线精品| 91视频免费播放| 精品国产123| 一区二区激情视频| 国产一区不卡在线| 欧美一级生活片| 一区二区在线电影| 国产精品 日产精品 欧美精品|