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

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

?? winperf.pas

?? 面對面 木馬生成器 完整代碼 程序僅提供測試學習 全局鉤子查找句柄截獲 使用ASP收信 收信地址明文(測試而已沒加密) //本軟件主要是截獲賬號和密碼 帶了個簡單發信
?? PAS
?? 第 1 頁 / 共 3 頁
字號:
// total space.) Display as is.  Display the quotient as "%".

  PERF_RAW_FRACTION =
            PERF_SIZE_DWORD or PERF_TYPE_COUNTER or PERF_COUNTER_FRACTION or
            PERF_DISPLAY_PERCENT;
  {$EXTERNALSYM PERF_RAW_FRACTION}

  PERF_LARGE_RAW_FRACTION =
            PERF_SIZE_LARGE or PERF_TYPE_COUNTER or PERF_COUNTER_FRACTION or
            PERF_DISPLAY_PERCENT;
  {$EXTERNALSYM PERF_LARGE_RAW_FRACTION}

// Indicates the data is a base for the preceding counter which should
// not be time averaged on display (such as free space over total space.)

  PERF_RAW_BASE =
            PERF_SIZE_DWORD or PERF_TYPE_COUNTER or PERF_COUNTER_BASE or
            PERF_DISPLAY_NOSHOW or
            $00000003;  // for compatibility with pre-beta versions
  {$EXTERNALSYM PERF_RAW_BASE}

  PERF_LARGE_RAW_BASE =
            PERF_SIZE_LARGE or PERF_TYPE_COUNTER or PERF_COUNTER_BASE or
            PERF_DISPLAY_NOSHOW;
  {$EXTERNALSYM PERF_LARGE_RAW_BASE}

// The data collected in this counter is actually the start time of the
// item being measured. For display, this data is subtracted from the
// sample time to yield the elapsed time as the difference between the two.
// In the definition below, the PerfTime field of the Object contains
// the sample time as indicated by the PERF_OBJECT_TIMER bit and the
// difference is scaled by the PerfFreq of the Object to convert the time
// units into seconds.

  PERF_ELAPSED_TIME =
            PERF_SIZE_LARGE or PERF_TYPE_COUNTER or PERF_COUNTER_ELAPSED or
            PERF_OBJECT_TIMER or PERF_DISPLAY_SECONDS;
  {$EXTERNALSYM PERF_ELAPSED_TIME}

//
//  The following counter type can be used with the preceding types to
//  define a range of values to be displayed in a histogram.
//

  PERF_COUNTER_HISTOGRAM_TYPE = $80000000; // Counter begins or ends a histogram
  {$EXTERNALSYM PERF_COUNTER_HISTOGRAM_TYPE}

//
//  This counter is used to display the difference from one sample
//  to the next. The counter value is a constantly increasing number
//  and the value displayed is the difference between the current
//  value and the previous value. Negative numbers are not allowed
//  which shouldn't be a problem as long as the counter value is
//  increasing or unchanged.
//

  PERF_COUNTER_DELTA =
            PERF_SIZE_DWORD or PERF_TYPE_COUNTER or PERF_COUNTER_VALUE or
            PERF_DELTA_COUNTER or PERF_DISPLAY_NO_SUFFIX;
  {$EXTERNALSYM PERF_COUNTER_DELTA}

  PERF_COUNTER_LARGE_DELTA =
            PERF_SIZE_LARGE or PERF_TYPE_COUNTER or PERF_COUNTER_VALUE or
            PERF_DELTA_COUNTER or PERF_DISPLAY_NO_SUFFIX;
  {$EXTERNALSYM PERF_COUNTER_LARGE_DELTA}

//
//  The precision counters are timers that consist of two counter values:
//      1) the count of elapsed time of the event being monitored
//      2) the "clock" time in the same units
//
//  the precition timers are used where the standard system timers are not
//  precise enough for accurate readings. It's assumed that the service
//  providing the data is also providing a timestamp at the same time which
//  will eliminate any error that may occur since some small and variable
//  time elapses between the time the system timestamp is captured and when
//  the data is collected from the performance DLL. Only in extreme cases
//  has this been observed to be problematic.
//
//  when using this type of timer, the definition of the
//      PERF_PRECISION_TIMESTAMP counter must immediately follow the
//      definition of the PERF_PRECISION_*_TIMER in the Object header
//
// The timer used has the same frequency as the System Performance Timer

  PERF_PRECISION_SYSTEM_TIMER =
        PERF_SIZE_LARGE or PERF_TYPE_COUNTER or PERF_COUNTER_PRECISION or
        PERF_TIMER_TICK or PERF_DELTA_COUNTER or PERF_DISPLAY_PERCENT;
  {$EXTERNALSYM PERF_PRECISION_SYSTEM_TIMER}

//
// The timer used has the same frequency as the 100 NanoSecond Timer

  PERF_PRECISION_100NS_TIMER =
        PERF_SIZE_LARGE or PERF_TYPE_COUNTER or PERF_COUNTER_PRECISION or
        PERF_TIMER_100NS or PERF_DELTA_COUNTER or PERF_DISPLAY_PERCENT;
  {$EXTERNALSYM PERF_PRECISION_100NS_TIMER}

//
// The timer used is of the frequency specified in the Object header's
//  PerfFreq field (PerfTime is ignored)

  PERF_PRECISION_OBJECT_TIMER =
        PERF_SIZE_LARGE or PERF_TYPE_COUNTER or PERF_COUNTER_PRECISION or
        PERF_OBJECT_TIMER or PERF_DELTA_COUNTER or PERF_DISPLAY_PERCENT;
  {$EXTERNALSYM PERF_PRECISION_OBJECT_TIMER}

//
// This is the timestamp to use in the computation of the timer specified
// in the previous description block

  PERF_PRECISION_TIMESTAMP = PERF_LARGE_RAW_BASE;
  {$EXTERNALSYM PERF_PRECISION_TIMESTAMP}

//
//  The following are used to determine the level of detail associated
//  with the counter.  The user will be setting the level of detail
//  that should be displayed at any given time.
//
//

  PERF_DETAIL_NOVICE         = 100; // The uninformed can understand it
  {$EXTERNALSYM PERF_DETAIL_NOVICE}
  PERF_DETAIL_ADVANCED       = 200; // For the advanced user
  {$EXTERNALSYM PERF_DETAIL_ADVANCED}
  PERF_DETAIL_EXPERT         = 300; // For the expert user
  {$EXTERNALSYM PERF_DETAIL_EXPERT}
  PERF_DETAIL_WIZARD         = 400; // For the system designer
  {$EXTERNALSYM PERF_DETAIL_WIZARD}

//
//
//  There is one of the following for each of the
//  PERF_OBJECT_TYPE.NumCounters.  The Unicode names in this structure MUST
//  come from a message file.
//
//

type
  PPerfCounterDefinition = ^TPerfCounterDefinition;
  _PERF_COUNTER_DEFINITION = record
    ByteLength: DWORD;                  // Length in bytes of this structure
    CounterNameTitleIndex: DWORD;       // Index of Counter name into
                                        // Title Database
    CounterNameTitle: LPWSTR;           // Initially NULL, for use by
                                        // analysis program to point to
                                        // retrieved title string
    CounterHelpTitleIndex: DWORD;       // Index of Counter Help into
                                        // Title Database
    CounterHelpTitle: LPWSTR;           // Initially NULL, for use by
                                        // analysis program to point to
                                        // retrieved title string
    DefaultScale: LONG;                 // Power of 10 by which to scale
                                        // chart line if vertical axis is 100
                                        // 0 ==> 1, 1 ==> 10, -1 ==>1/10, etc.
    DetailLevel: DWORD;                 // Counter level of detail (for
                                        // controlling display complexity)
    CounterType: DWORD;                 // Type of counter
    CounterSize: DWORD;                 // Size of counter in bytes
    CounterOffset: DWORD;               // Offset from the start of the
                                        // PERF_COUNTER_BLOCK to the first
                                        // byte of this counter
  end;
  {$EXTERNALSYM _PERF_COUNTER_DEFINITION}
  PERF_COUNTER_DEFINITION = _PERF_COUNTER_DEFINITION;
  {$EXTERNALSYM PERF_COUNTER_DEFINITION}
  PPERF_COUNTER_DEFINITION = ^PERF_COUNTER_DEFINITION;
  {$EXTERNALSYM PPERF_COUNTER_DEFINITION}
  TPerfCounterDefinition = _PERF_COUNTER_DEFINITION;

//
//
//  If (PERF_DATA_BLOCK.NumInstances >= 0) then there will be
//  PERF_DATA_BLOCK.NumInstances of a (PERF_INSTANCE_DEFINITION
//  followed by a PERF_COUNTER_BLOCK followed by the counter data fields)
//  for each instance.
//
//  If (PERF_DATA_BLOCK.NumInstances < 0) then the counter definition
//  strucutre above will be followed by only a PERF_COUNTER_BLOCK and the
//  counter data for that COUNTER.
//

const
  PERF_NO_UNIQUE_ID = -1;
  {$EXTERNALSYM PERF_NO_UNIQUE_ID}

type
  PPerfInstanceDefinition = ^TPerfInstanceDefinition;
  _PERF_INSTANCE_DEFINITION = record
    ByteLength: DWORD;                  // Length in bytes of this structure,
                                        // including the subsequent name
    ParentObjectTitleIndex: DWORD;      // Title Index to name of "parent"
                                        // object (e.g., if thread, then
                                        // process is parent object type);
                                        // if logical drive, the physical
                                        // drive is parent object type
    ParentObjectInstance: DWORD;        // Index to instance of parent object
                                        // type which is the parent of this
                                        // instance.
    UniqueID: LONG;                     // A unique ID used instead of
                                        // matching the name to identify
                                        // this instance, -1 = none
    NameOffset: DWORD;                  // Offset from beginning of
                                        // this struct to the Unicode name
                                        // of this instance
    NameLength: DWORD;                  // Length in bytes of name; 0 = none
                                        // this length includes the characters
                                        // in the string plus the size of the
                                        // terminating NULL char. It does not
                                        // include any additional pad bytes to
                                        // correct structure alignment
  end;
  {$EXTERNALSYM _PERF_INSTANCE_DEFINITION}
  PERF_INSTANCE_DEFINITION = _PERF_INSTANCE_DEFINITION;
  {$EXTERNALSYM PERF_INSTANCE_DEFINITION}
  PPERF_INSTANCE_DEFINITION = ^PERF_INSTANCE_DEFINITION;
  {$EXTERNALSYM PPERF_INSTANCE_DEFINITION}
  TPerfInstanceDefinition = _PERF_INSTANCE_DEFINITION;

//
//  If .ParentObjectName is 0, there
//  is no parent-child hierarchy for this object type.  Otherwise,
//   the .ParentObjectInstance is an index, starting at 0, into the
//  instances reported for the parent object type.  It is only
//  meaningful if .ParentObjectName is not 0.  The purpose of all this
//  is to permit reporting/summation of object instances like threads
//  within processes, and logical drives within physical drives.
//
//
//  The PERF_INSTANCE_DEFINITION will be followed by a PERF_COUNTER_BLOCK.
//

  PPerfCounterBlock = ^TPerfCounterBlock;
  _PERF_COUNTER_BLOCK = record
    ByteLength: DWORD;                  // Length in bytes of this structure,
                                        // including the following counters
  end;
  {$EXTERNALSYM _PERF_COUNTER_BLOCK}
  PERF_COUNTER_BLOCK = _PERF_COUNTER_BLOCK;
  {$EXTERNALSYM PERF_COUNTER_BLOCK}
  PPERF_COUNTER_BLOCK = ^PERF_COUNTER_BLOCK;
  {$EXTERNALSYM PPERF_COUNTER_BLOCK}
  TPerfCounterBlock = _PERF_COUNTER_BLOCK;

//
//  The PERF_COUNTER_BLOCK is followed by PERF_OBJECT_TYPE.NumCounters
//  number of counters.
//

//
// Support for New Extensible API starting with NT 5.0
//

const
  PERF_QUERY_OBJECTS = DWORD($80000000);
  {$EXTERNALSYM PERF_QUERY_OBJECTS}
  PERF_QUERY_GLOBAL  = DWORD($80000001);
  {$EXTERNALSYM PERF_QUERY_GLOBAL}
  PERF_QUERY_COSTLY  = DWORD($80000002);
  {$EXTERNALSYM PERF_QUERY_COSTLY}

//
//  function typedefs for extensible counter function prototypes
//

type
  PM_OPEN_PROC = function (Arg1: LPWSTR): DWORD; stdcall;
  {$EXTERNALSYM PM_OPEN_PROC}
  PM_COLLECT_PROC = function (Arg1: LPWSTR; Arg2: Pointer; Arg3, Arg4: LPDWORD): DWORD; stdcall;
  {$EXTERNALSYM PM_COLLECT_PROC}
  PM_CLOSE_PROC = function: DWORD; stdcall;
  {$EXTERNALSYM PM_CLOSE_PROC}
  PM_QUERY_PROC = function (Arg1: LPDWORD; Arg2: Pointer; Arg3, Arg4: LPDWORD): DWORD; stdcall;
  {$EXTERNALSYM PM_QUERY_PROC}

const
  MAX_PERF_OBJECTS_IN_QUERY_FUNCTION = LONG(8);
  {$EXTERNALSYM MAX_PERF_OBJECTS_IN_QUERY_FUNCTION}

implementation

end.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美在线一区二区三区| 日韩av电影天堂| 久久综合五月天婷婷伊人| 欧美日韩不卡视频| 欧美日韩成人一区二区| 8v天堂国产在线一区二区| 欧美日本韩国一区| 日韩视频在线你懂得| 日韩亚洲欧美在线| 久久久午夜精品| 中文字幕av一区二区三区免费看 | 美女网站色91| 日本 国产 欧美色综合| 久久99久久99小草精品免视看| 久久99国产精品免费| 国产黄色精品网站| 岛国av在线一区| 一本色道久久综合亚洲aⅴ蜜桃 | 成人综合婷婷国产精品久久蜜臀 | 国产一区在线看| 福利一区二区在线| 91在线视频18| 91麻豆精品国产自产在线 | 粉嫩一区二区三区在线看| 国产91富婆露脸刺激对白| 91丨九色丨国产丨porny| 欧美日韩一卡二卡三卡 | 亚洲午夜日本在线观看| 日韩成人一区二区| 成人黄页毛片网站| 欧美高清dvd| www久久精品| 亚洲最大色网站| 久久精品国产精品亚洲综合| 91视视频在线直接观看在线看网页在线看 | 91成人国产精品| 91精品国产一区二区三区蜜臀| 久久久亚洲欧洲日产国码αv| 亚洲精品视频免费看| 久久超碰97中文字幕| 色噜噜狠狠色综合欧洲selulu| 日韩欧美激情在线| 亚洲电影第三页| 成人av中文字幕| 日韩精品在线一区| 亚洲自拍欧美精品| av在线播放成人| 日韩免费观看2025年上映的电影| 亚洲视频一区在线| 国产黄色91视频| 精品久久久久久无| 日韩不卡免费视频| 日本高清不卡一区| 中文字幕中文字幕在线一区| 国产精品资源在线| 日韩一区二区三区在线观看| 亚洲精品视频在线观看网站| 成人听书哪个软件好| 2023国产精品自拍| 久久国产欧美日韩精品| 欧美另类videos死尸| 亚洲午夜私人影院| 91久久香蕉国产日韩欧美9色| 中文字幕av在线一区二区三区| 精品无人码麻豆乱码1区2区 | 蜜臀精品一区二区三区在线观看 | 久久91精品国产91久久小草| 欧美老年两性高潮| 亚洲国产毛片aaaaa无费看| 91老司机福利 在线| 亚洲欧洲日韩女同| 成人动漫中文字幕| 国产精品成人网| 成人午夜激情在线| 国产精品嫩草久久久久| 国产69精品久久99不卡| 国产精品网曝门| 99在线精品视频| 亚洲精品免费播放| 日本高清不卡aⅴ免费网站| 亚洲三级久久久| 欧美在线观看一二区| 亚洲一区免费观看| 日韩欧美中文一区二区| 久久69国产一区二区蜜臀| 精品国产91洋老外米糕| 国产成人综合在线观看| 国产精品亲子伦对白| 色综合久久久久综合体| 亚洲一区二区三区三| 日韩视频免费观看高清完整版在线观看| 日韩黄色一级片| 久久免费美女视频| 成人激情综合网站| 亚洲一区自拍偷拍| 精品国产三级电影在线观看| 国产a区久久久| 亚洲激情图片小说视频| 69堂亚洲精品首页| 国产乱理伦片在线观看夜一区| 亚洲国产精品黑人久久久| 色伊人久久综合中文字幕| 日韩精品五月天| 久久久久久久久久久电影| 色一情一伦一子一伦一区| 琪琪久久久久日韩精品| 国产欧美日韩综合| 欧美三级在线看| 丁香一区二区三区| 亚洲v日本v欧美v久久精品| 久久综合999| 欧美在线观看你懂的| 国产成人综合精品三级| 亚洲午夜在线观看视频在线| 久久久精品蜜桃| 欧美剧情电影在线观看完整版免费励志电影 | 欧美日韩国产在线观看| 国产精品一区二区在线播放| 亚洲综合色噜噜狠狠| 国产精品五月天| 宅男噜噜噜66一区二区66| 99精品热视频| 国产又黄又大久久| 亚洲一区电影777| 中文字幕在线不卡一区| 欧美变态tickle挠乳网站| 一本大道综合伊人精品热热| 国产精品一区免费视频| 日本美女一区二区| 亚洲最大的成人av| 中文字幕一区二区三区在线观看| 欧美大片一区二区| 欧美日韩激情在线| 在线免费观看成人短视频| 波波电影院一区二区三区| 久久99精品久久久久久国产越南| 亚洲成人免费在线| 亚洲色图欧洲色图| 国产精品传媒视频| 国产精品久久久99| 国产精品日产欧美久久久久| 国产午夜久久久久| 久久婷婷国产综合精品青草| 日韩欧美一二三区| 日韩一区二区三区在线| 欧美一区二区精美| 欧美一区二区美女| 欧美一级片免费看| 日韩一级精品视频在线观看| 日韩一区二区三| 欧美日韩日本视频| 欧美精品久久久久久久久老牛影院| 91视频.com| 色综合色综合色综合色综合色综合| 久久精品99国产国产精| 亚洲国产cao| 首页国产欧美日韩丝袜| 婷婷丁香激情综合| 蜜臀久久99精品久久久久久9| 日韩高清一区二区| 久久精品国产99| 国产自产2019最新不卡| 国产不卡视频一区二区三区| 国产+成+人+亚洲欧洲自线| 91香蕉视频污在线| 欧美日韩久久一区| 精品欧美一区二区在线观看| www国产成人| 最新日韩av在线| 亚洲国产成人va在线观看天堂| 偷拍一区二区三区四区| 激情图区综合网| 99久久婷婷国产| 欧美日韩免费一区二区三区 | 国产一区二区剧情av在线| 九九精品一区二区| 国产999精品久久久久久| 99视频热这里只有精品免费| 欧美午夜精品理论片a级按摩| 欧美午夜在线观看| 精品日韩成人av| 亚洲视频免费在线| 偷拍自拍另类欧美| 成人免费高清视频在线观看| 欧美影院一区二区三区| 2020国产精品自拍| 一区二区三区四区高清精品免费观看| 午夜私人影院久久久久| 国产麻豆9l精品三级站| 欧美性感一类影片在线播放| 欧美mv日韩mv| 一区二区三区国产豹纹内裤在线| 日韩中文字幕麻豆| av亚洲精华国产精华精华| 欧美精品乱人伦久久久久久| 国产精品国产三级国产普通话蜜臀 | 亚洲三级电影全部在线观看高清| 三级精品在线观看| 成人黄页在线观看| 欧美大片在线观看一区二区|