Add project files.

This commit is contained in:
2018-06-25 21:48:45 -04:00
parent b04a25689b
commit 3c1b7d28e8
425 changed files with 35333 additions and 0 deletions
@@ -0,0 +1,19 @@
#ifndef _DLLEXPORT_H_
#define _DLLEXPORT_H_
#include "CompileSettings.h"
#if _STATIC_LIB_ == 0
# ifdef _MYDLL_
# define EXPORT_FROM_MYDLL __declspec(dllimport)
# define EXPIMP_TEMPLATE extern
# else
# define EXPORT_FROM_MYDLL __declspec(dllexport)
# define EXPIMP_TEMPLATE
# endif
#else
# define EXPORT_FROM_MYDLL
# define EXPIMP_TEMPLATE
#endif
#endif/// END IFNDEF _DLLEXPORT_H_