eaload.h

来自「windows的snmp api源码」· C头文件 代码 · 共 22 行

H
22
字号
#ifndef _EALOAD_H
#define _EALOAD_H

// Primary Module Parameters
//---------------------------
// "ParameterMessageFile" param flag
#define PMP_PARAMMSGFILE    0x00000001

typedef struct
{
    DWORD   dwParams;   // bitmask of PMP_* values, identifying the valid parameters in the structure
    HMODULE hModule;    // place holder for the "ParameterMessageFile" param
} tPrimaryModuleParms;

// Returns in 'Params' the requested parameters (identified by Params.dwParams field)
DWORD LoadPrimaryModuleParams(
         IN  HKEY hkLogFile,               // opened registry key to HKLM\System\CurrentControlSet\Services\EventLog\<LogFile>
         IN  LPCTSTR tchPrimModule,        // name of the PrimaryModule as it is defined in the "PrimaryModule" value of the key above
         OUT tPrimaryModuleParms &Params); // allocated output buffer, ready to receive the values for the requested parameters

#endif

⌨️ 快捷键说明

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