fastdo  0.6.8
fastdo-0.5.x.hpp 文件参考
#include "fcgiplus.hpp"
#include "eiendb.hpp"
#include "eiennet.hpp"
#include "eiengd.hpp"
#include "eienexpr.hpp"
#include "eientpl.hpp"
#include "fcgiserv.hpp"
#include <iostream>
fastdo-0.5.x.hpp 的引用(Include)关系图:

浏览源代码.

宏定义

#define EXTERN_C
 
#define FASTDO_API   EXTERN_C __declspec(dllexport)
 
#define GET_RUNPARAM(type)   ((type)__runParam)
 
#define BEGIN_WEB_MAIN(RSP, REQ, APP)
 
#define END_WEB_MAIN(RSP)
 

宏定义说明

#define BEGIN_WEB_MAIN (   RSP,
  REQ,
  APP 
)
值:
FASTDO_API int WebMain( Response * __rsp, void * __runParam ) { \
Response & RSP = *__rsp; \
Request & REQ = __rsp->req; \
FcgiApp & APP = *REQ.fcgiApp; \
try {
Request & req
Request对象的引用
Definition: fcgiplus.hpp:253
FcgiApp * fcgiApp
FcgiApp对象指针
Definition: fcgiplus.hpp:181
代表一个客户响应
Definition: fcgiplus.hpp:246
#define FASTDO_API

在文件 fastdo-0.5.x.hpp36 行定义.

#define END_WEB_MAIN (   RSP)
值:
} catch ( std::exception const & e ) { \
cout << e.what() << endl; \
} catch (...) { \
cout << "Unknown error" << endl; \
} \
return 0; \
}

在文件 fastdo-0.5.x.hpp43 行定义.

#define EXTERN_C

在文件 fastdo-0.5.x.hpp7 行定义.

#define FASTDO_API   EXTERN_C __declspec(dllexport)

在文件 fastdo-0.5.x.hpp12 行定义.

#define GET_RUNPARAM (   type)    ((type)__runParam)

在文件 fastdo-0.5.x.hpp34 行定义.