#ifdef SYSTEM_CORE_EXPORTS
#define SYSTEM_CORE_API __declspec(dllexport)
#else
#define SYSTEM_CORE_API __declspec(dllimport)//it says that this is an inactive preprocessor
#endif
If anyone can help it would be greatly appreciated
ID:183260
Sep 6 2007, 11:21 am
|
|
I have created a DLL in the last couple of days and have been struggling with getting it to work. When I compile it it say creating System_Core.lib but hen when I go into the file their is no file. I'm not sure if the entire folder is just .lib or a certain file. I have included the directory it said it was in and when I add #include "System_Core.h" and compile it says no file found. I think I narrowed it down to an area that may cause the problem:
#ifdef SYSTEM_CORE_EXPORTS If anyone can help it would be greatly appreciated |