30 lines
757 B
C
30 lines
757 B
C
/*=========================================================================
|
|
* InLine.h
|
|
* This is a part of the Game project.
|
|
*
|
|
* Version 1.0
|
|
* Creation date 14/02/97
|
|
* Revision date
|
|
*
|
|
* That file needs to be compatible for all platforms.
|
|
*
|
|
* (c) Ubi Studios 1997
|
|
*=======================================================================*/
|
|
|
|
#if !defined(__INLINE_H__)
|
|
#define __INLINE_H__
|
|
|
|
/******************************************/
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif /* _MSC_VER >= 1000 */
|
|
/******************************************/
|
|
|
|
#if defined(__cplusplus)
|
|
#define GAME_INLINE inline /*=============> For inline source code*/
|
|
#else /* !__cplusplus */
|
|
#define GAME_INLINE
|
|
#endif /* __cplusplus */
|
|
|
|
#endif
|