isapi_server.h

来自「linux下简单对象应用协议的开发库」· C头文件 代码 · 共 21 行

H
21
字号
/** Interface of the ISAPI_Server class 
  * @file ISAPI_SoapServerFactory.h
  * @author Christian Aberger 
  * Copyright (C) 2001 WebWare (http://www.webware.at) 
  */
#ifndef ISAPI_H_F3A8FE11_2C12_11d5_8BEB
#define ISAPI_H_F3A8FE11_2C12_11d5_8BEB

#include <httpext.h>

/** Internet Server Application Programming Interface server.
  *
  */
class ISAPI_Server {
public:
    static DWORD HttpExtensionProc(EXTENSION_CONTROL_BLOCK *pECB);
    static BOOL GetExtensionVersion(OUT HSE_VERSION_INFO *pVer);
    static BOOL TerminateExtension(DWORD dwFlags);
};

#endif // ISAPI_H_F3A8FE11_2C12_11d5_8BEB

⌨️ 快捷键说明

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