IGameExport.h

Go to the documentation of this file.
00001 /**********************************************************************
00002  *<
00003     FILE: IGameExport.h
00004 
00005     DESCRIPTION:    Defines preprocessor switch for IGame.dll
00006                     and client application
00007 
00008     CREATED BY:     Alex Zadorozhny
00009 
00010     HISTORY:        05|12|2005
00011 
00012     IGame Version: 1.122
00013 
00014  *> Copyright (c) 2005, All Rights Reserved.
00015  **********************************************************************/
00022 #pragma once
00023 
00024 
00026 #ifdef IMPORTING
00027 #define IGAMEEXPORT __declspec( dllimport )
00028 #else
00029 #define IGAMEEXPORT __declspec( dllexport )
00030 #endif
00031 
00032 
00033