engine/include/export.h

13 lines
213 B
C
Raw Normal View History

2022-09-02 23:02:09 +00:00
#pragma once
#ifndef DECLSPEC
# ifdef _MSC_VER
# ifdef ENGINE_EXPORTS
# define DECLSPEC __declspec(dllexport)
# else
# define DECLSPEC __declspec(dllimport)
# endif
# else
# define DECLSPEC
# endif
#endif