engine/include/export.h

14 lines
222 B
C
Raw Normal View History

2022-09-02 23:02:09 +00:00
#pragma once
2022-09-03 04:56:51 +00:00
#ifndef ENGINE_API
2022-09-02 23:02:09 +00:00
# ifdef _MSC_VER
# ifdef ENGINE_EXPORTS
2022-09-03 04:56:51 +00:00
# define ENGINE_API __declspec(dllexport)
2022-09-02 23:02:09 +00:00
# else
2022-09-03 04:56:51 +00:00
# define ENGINE_API __declspec(dllimport)
2022-09-02 23:02:09 +00:00
# endif
# else
2022-09-03 04:56:51 +00:00
# define ENGINE_API
2022-09-02 23:02:09 +00:00
# endif
2022-09-03 04:56:51 +00:00
#endif