⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stattype.h

📁 希望我上传的这些东西可以对搞编程的程序员有点小小的帮助!谢谢!
💻 H
字号:
// --stattype.h-----------------------------------------------------------------
//
// Defines types used in the stats component.
// 
// Copyright 1986 - 1998 Microsoft Corporation.  All Rights Reserved.
// -----------------------------------------------------------------------------

#ifndef __stattype_h
#pragma option push -b -a8 -pc -A- /*P_O_Push*/
#define __stattype_h

// Flags for metric to calculate.
// ------------------------------
#define FM_CMESSAGES        0x00000001
#define FM_LONGEST_WAIT     0x00000002
#define FM_TOTAL_WAIT       0x00000004



typedef enum _jswindowtype
{
    JSWINDOW_MIN = 0,       // calculate the minimum in a window
    JSWINDOW_MAX,           // calculate the maximum in a window
    JSWINDOW_AVERAGE,       // calculate the average of a window
    JSWINDOW_TOTAL_RATE,    // calculate the total of a window
    JSWINDOW_LAST           // all types are less than this
} JSWINDOWTYPE;

#pragma option pop /*P_O_Pop*/
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -