tagging release
[dasher.git] / Src / Common / Platform.h
blob75bfa70486c814c87e45f4493045e89a6e38fe63
1 // Platform.h
2 //
3 // Copyright (c) 2004 David Ward
5 #ifndef __Platform_h__
6 #define __Platform_h__
8 // Place to set platform-defines of the form DASHER_........
10 #ifdef _MSC_VER
12 #ifdef WIN32
13 #define DASHER_WIN32 _MSC_VER
14 #endif
16 #ifdef _WIN32_WCE
17 #define DASHER_WIN32 _MSC_VER
18 #define DASHER_WINCE
19 #endif
21 #else
23 // Please set platform-defines here
25 #endif
27 #endif