1234567891011121314151617 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2022-06-26
- * Changed: 2022-07-15
- *
- * */
- #ifndef LS_STD_MSVC_DLL_DEFINITIONS_HPP
- #define LS_STD_MSVC_DLL_DEFINITIONS_HPP
- #define LS_STD_DLL_EXPORT __declspec(dllexport)
- #define LS_STD_DLL_IMPORT __declspec(dllimport)
- #define LS_STD_DYNAMIC_GOAL LS_STD_DLL_EXPORT
- #endif
|