source: GTP/trunk/App/Games/Jungle_Rumble/src/physic/cooking/include/Nxc.h @ 1378

Revision 1378, 1.0 KB checked in by giegl, 18 years ago (diff)

GTPD - Jungle Rumble - integrate into GTP SVN structure

Line 
1#ifndef NX_COOKING_NX
2#define NX_COOKING_NX
3/*----------------------------------------------------------------------------*\
4|
5|                                               Public Interface to NovodeX Technology
6|
7|                                                            www.novodex.com
8|
9\*----------------------------------------------------------------------------*/
10/**
11DLL export macros
12*/
13#ifndef NXC_DLL_EXPORT
14        #ifdef NX_COOKING_DLL
15
16                #define NXC_DLL_EXPORT __declspec(dllexport)
17
18        #elif defined NX_COOKING_STATICLIB
19
20                #define NXC_DLL_EXPORT
21
22        #elif defined NX_USE_SDK_DLLS
23
24                #define NXC_DLL_EXPORT __declspec(dllimport)
25
26        #elif defined NX_USE_SDK_STATICLIBS
27
28                #define NXC_DLL_EXPORT
29
30        #else
31
32                #define NXC_DLL_EXPORT __declspec(dllimport)
33       
34        #endif
35#endif
36
37#ifndef NX_C_EXPORT
38        #define NX_C_EXPORT extern "C"
39#endif
40
41#endif
42
43
44//AGCOPYRIGHTBEGIN
45///////////////////////////////////////////////////////////////////////////
46// Copyright © 2005 AGEIA Technologies.
47// All rights reserved. www.ageia.com
48///////////////////////////////////////////////////////////////////////////
49//AGCOPYRIGHTEND
50
Note: See TracBrowser for help on using the repository browser.