//--------------------------------------------------------------------------- #ifndef VMS0000MZH #define VMS0000MZH //--------------------------------------------------------------------------- #include //--------------------------------------------------------------------------- //#pragma warn -8111 /* ***************************************************************************** * DLL Import/Export ***************************************************************************** */ #ifdef __PLUGIN_DLL_EXPORT__ #define PLUGIN_LIB __declspec(dllexport) #else #define PLUGIN_LIB __declspec(dllimport) #pragma comment(lib, "PlugInForm.lib") /* µ¿ÀûÀ¸·Î dll ·ÎµùÇÒ¶§ »ç¿ëÇÑ´Ù. */ #endif //--------------------------------------------------------------------------- typedef enum { e_mdichild, e_modal, e_normal, } E_FRM_TYPE; /* ***************************************************************************** * Function Prototypes ***************************************************************************** */ extern "C" { PLUGIN_LIB int __stdcall ShowVmsMsgFormMngr(HWND AOwner, int AShowType, String AOperId); PLUGIN_LIB int __stdcall ShowVmsMsgFormMngr2(); PLUGIN_LIB int __stdcall ShowVmsMsgSymbMngr(HWND AOwner, int AShowType, String AOperId); PLUGIN_LIB int __stdcall ShowVmsMsgSymbMngr2(); } #endif