00001 // rdCntrDLL.h 00002 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00003 // Copyright 2000 Realistic Dynamics, Inc. 00004 // All rights reserved. 00005 // 00006 // CONFIDENTIAL 00007 // 00008 // The material contain within this file is the property of Realistic Dynamics, 00009 // Inc. Please do not read, copy, or distribute without written permission 00010 // from Realistic Dynamics, Inc. 00011 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00012 00013 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00014 // Copyright 2000 Realistic Dynamics, Inc. 00015 // All rights reserved. 00016 // 00017 // CONFIDENTIAL 00018 // 00019 // The material contain within this file is the sole property of 00020 // Realistic Dynamics, Inc., and may not be read without the expressed 00021 // writen consent of Realistic Dynamics, Inc. 00022 //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00023 #ifndef __rdCntrDLL_h__ 00024 #define __rdCntrDLL_h__ 00025 00026 // UXIX 00027 #ifdef UNIX 00028 00029 #define RDCNTR_API 00030 00031 // WINDOWS 00032 #else 00033 00034 #define WIN32_LEAN_AND_MEAN 00035 #include <windows.h> 00036 #ifdef RDCNTR_EXPORTS 00037 #define RDCNTR_API __declspec(dllexport) 00038 #else 00039 #define RDCNTR_API __declspec(dllimport) 00040 #endif 00041 00042 #endif // PLATFORM 00043 00044 00045 #endif // __rdCntrDLL_h__
1.3