00001 //--------------------------------------------------------------------------------------------- 00002 // This file is a part of "DinoKod". 00003 // Copyright © 2003 Dino Productions. All Rights Reserved. 00004 // 00005 // File : CommonDll.h 00006 // Author : Sebastien LEIX sebastien.leix@wanadoo.fr 00007 // Date : 06/05/2002 00008 // Modification : 00009 // 00010 //--------------------------------------------------------------------------------------------- 00011 #include "ZythumProject/ZythumProjectDll.h" 00012 00013 #ifdef _NODLLDECL 00014 #define COMMON_API 00015 #else 00016 #ifdef COMMON_EXPORTS 00017 #define COMMON_API __declspec(dllexport) 00018 #else 00019 #define COMMON_API __declspec(dllimport) 00020 #endif 00021 #endif 00022
1.5.1-p1