12345678910111213141516171819202122232425262728293031323334353637 |
- //---------------------------------------------------------------------------
- #ifndef VMS0100MZH
- #define VMS0100MZH
- //---------------------------------------------------------------------------
- #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
- //---------------------------------------------------------------------------
- /*
- *****************************************************************************
- * Function Prototypes
- *****************************************************************************
- */
- extern "C"
- {
- PLUGIN_LIB void __stdcall ShowVmsForm(HWND Owner, HWND Parent, bool AIsMdiChild, bool bShowModal);
- PLUGIN_LIB void __stdcall ShowVmsForm2();
- PLUGIN_LIB void __stdcall ShowVmsForm3();
- }
- #endif
|