ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/outil/src/hypergraphlib_platform.h
Revision: 481
Committed: Tue Jan 28 16:10:58 2014 UTC (11 years, 5 months ago) by francois
Content type: text/plain
Original Path: magic/lib/outil/src/hypergraphlib_platform.h
File size: 482 byte(s)
Log Message:
unification de la facon d'ecrire les fichiers tous en minuscules

File Contents

# User Rev Content
1 francois 283 #ifndef HypergraphLib_PlatformH
2     #define HypergraphLib_PlatformH
3 francois 102
4 francois 283 //----------------------------------------------------------------------------
5     // Microsoft Windows 2000/XP platform
6     //----------------------------------------------------------------------------
7    
8     #if defined(__BORLANDC__)
9    
10     #if defined(BUILT_DLL_OUTIL)
11     #define HYPERGRAPHLIB_ITEM __declspec(dllexport)
12     #else
13     #define HYPERGRAPHLIB_ITEM __declspec(dllimport)
14     #endif
15    
16     #else
17    
18     #define HYPERGRAPHLIB_ITEM
19    
20     #endif
21    
22    
23    
24     #endif