全て データ構造 ファイル 関数 変数 型定義 列挙型 列挙型の値 ページ
urg_detect_os.h
説明を見る。
1 #ifndef URG_DETECT_OS_H
2 #define URG_DETECT_OS_H
3 
13 #if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__)
14 #define URG_WINDOWS_OS
15 
16 #if defined(_MSC_VER)
17 #define URG_MSC
18 #endif
19 
20 #elif defined(__linux__)
21 #define URG_LINUX_OS
22 
23 #else
24 // 検出できないときを、Mac 扱いにしてしまう
25 #define URG_MAC_OS
26 #endif
27 
28 #endif /* !URG_DETECT_OS_H */