19 lines
423 B
C
19 lines
423 B
C
// dlldata.c 的包装
|
|
|
|
#ifdef _MERGE_PROXYSTUB // 合并代理存根(stub) DLL
|
|
|
|
#define REGISTER_PROXY_DLL //DllRegisterServer 等
|
|
|
|
#define _WIN32_WINNT 0x0500 //对于 WinNT 4.0 或安装了 DCOM 的 Win95
|
|
#define USE_STUBLESS_PROXY //仅当使用 MIDL 开关 /Oicf 时定义
|
|
|
|
#pragma comment(lib, "rpcns4.lib")
|
|
#pragma comment(lib, "rpcrt4.lib")
|
|
|
|
#define ENTRY_PREFIX Prx
|
|
|
|
#include "dlldata.c"
|
|
#include "MobsetWeb_p.c"
|
|
|
|
#endif //_MERGE_PROXYSTUB
|