engine/include/export.h
2022-09-03 00:02:09 +01:00

13 lines
213 B
C

#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