VMS0100MZ.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //---------------------------------------------------------------------------
  2. #ifndef VMS0100MZH
  3. #define VMS0100MZH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. //---------------------------------------------------------------------------
  7. //#pragma warn -8111
  8. /*
  9. *****************************************************************************
  10. * DLL Import/Export
  11. *****************************************************************************
  12. */
  13. #ifdef __PLUGIN_DLL_EXPORT__
  14. #define PLUGIN_LIB __declspec(dllexport)
  15. #else
  16. #define PLUGIN_LIB __declspec(dllimport)
  17. #pragma comment(lib, "PlugInForm.lib") /* 동적으로 dll 로딩할때 사용한다. */
  18. #endif
  19. //---------------------------------------------------------------------------
  20. /*
  21. *****************************************************************************
  22. * Function Prototypes
  23. *****************************************************************************
  24. */
  25. extern "C"
  26. {
  27. PLUGIN_LIB void __stdcall ShowVmsForm(HWND Owner, HWND Parent, bool AIsMdiChild, bool bShowModal);
  28. PLUGIN_LIB void __stdcall ShowVmsForm2();
  29. PLUGIN_LIB void __stdcall ShowVmsForm3();
  30. }
  31. #endif