12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //---------------------------------------------------------------------------
- #ifndef VMS0000MZH
- #define VMS0000MZH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- //---------------------------------------------------------------------------
- //#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
|