#ifndef __I7000CE_H__ #define __I7000CE_H__ // The following ifdef block is the standard way of creating macros which make exporting // from a DLL simpler. All files within this DLL are compiled with the I7000CE_EXPORTS // symbol defined on the command line. this symbol should not be defined on any project // that uses this DLL. This way any other project whose source files include this file see // I7000CE_API functions as being imported from a DLL, wheras this DLL sees symbols // defined with this macro as being exported. #ifdef I7000CE_EXPORTS #define I7000CE_API __declspec(dllexport) #else #define I7000CE_API __declspec(dllimport) #endif // This class is exported from the I7000CE.dll class I7000CE_API CI7000CE { public: CI7000CE(void); // TODO: add your methods here. }; extern I7000CE_API int nI7000CE; I7000CE_API int fnI7000CE(void); #include "I7000.H" #include "I8000.H" #include "I87000.H" #endif