Przeglądaj źródła

Make dll goal strategy more library specific

Patrick-Christopher Mattulat 1 rok temu
rodzic
commit
1a34d11eb7

+ 4 - 4
include/ls_std/os/windows/msvc_dll_definitions.hpp

@@ -3,15 +3,15 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-06-26
- * Changed:         2022-07-03
+ * Changed:         2022-07-15
  *
  * */
 
 #ifndef LS_STD_MSVC_DLL_DEFINITIONS_HPP
 #define LS_STD_MSVC_DLL_DEFINITIONS_HPP
 
-#define DLL_EXPORT        __declspec(dllexport)
-#define DLL_IMPORT        __declspec(dllimport)
-#define LS_STD_DYNAMIC_GOAL      DLL_EXPORT
+#define LS_STD_DLL_EXPORT        __declspec(dllexport)
+#define LS_STD_DLL_IMPORT        __declspec(dllimport)
+#define LS_STD_DYNAMIC_GOAL      LS_STD_DLL_EXPORT
 
 #endif