//  // // # # ### # # -= Nuclex Project =-  // // ## # # # ## ## NuclexPython.h - Rar plugin implementation  // // ### # # ###  // // # ### # ### The plugin implementation for nuclex  // // # ## # # ## ##  // // # # ### # # R1 (C)2002-2004 Markus Ewald -> License.txt  // //  // #ifndef NUCLEX_PYTHON_H #define NUCLEX_PYTHON_H #include "Nuclex/Nuclex.h" // The following block will decide whether symbols are imported from a // dll (client app) or exported to a dll (library). The NUCLEX_EXPORTS symbol // should only be used for compiling the nuclex library and nowhere else. // // If you dynamically link against nuclex, you should define NUCLEX_DLL for // your project in order to import the dll symbols from nuclex. // #ifdef PYTHONPLUGIN_EXPORTS #define NUCLEXPYTHON_API __declspec(dllexport) #else #define NUCLEXPYTHON_API __declspec(dllimport) #endif #endif // NUCLEX_PYTHON_H