msvc_dll_definitions.hpp 455 B

1234567891011121314151617
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-06-26
  6. * Changed: 2022-07-15
  7. *
  8. * */
  9. #ifndef LS_STD_MSVC_DLL_DEFINITIONS_HPP
  10. #define LS_STD_MSVC_DLL_DEFINITIONS_HPP
  11. #define LS_STD_DLL_EXPORT __declspec(dllexport)
  12. #define LS_STD_DLL_IMPORT __declspec(dllimport)
  13. #define LS_STD_DYNAMIC_GOAL LS_STD_DLL_EXPORT
  14. #endif