123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #ifndef __IBSPFRONTEND_H_
- #define __IBSPFRONTEND_H_
- static const GUID QERPlugBSPFrontendTable_GUID =
- { 0x8ed6a480, 0xba5e, 0x11d3, { 0xa3, 0xe3, 0x0, 0x4, 0xac, 0x96, 0xd4, 0xc3 } };
- typedef char * (WINAPI* PFN_GETBSPMENU) ();
- typedef void (WINAPI* PFN_DISPATCHBSPCOMMAND) (char *);
- struct _QERPlugBSPFrontendTable
- {
- int m_nSize;
- PFN_GETBSPMENU m_pfnGetBSPMenu;
- PFN_DISPATCHBSPCOMMAND m_pfnDispatchBSPCommand;
- };
- static const GUID QERAppBSPFrontendTable_GUID =
- { 0xa2ccf366, 0xba60, 0x11d3, { 0xa3, 0xe3, 0x0, 0x4, 0xac, 0x96, 0xd4, 0xc3 } };
- typedef char * (WINAPI* PFN_GETMAPNAME) ();
- typedef void (WINAPI* PFN_LOADPOINTFILE) ();
- struct _QERAppBSPFrontendTable
- {
- int m_nSize;
- PFN_GETMAPNAME m_pfnGetMapName;
- PFN_LOADPOINTFILE m_pfnLoadPointFile;
- };
- #endif
|