Changeset 886 for cpp/common/nonstd.h
- Timestamp:
- 07/22/19 01:13:09 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/common/nonstd.h
r842 r886 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-201 5Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2019 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 21 21 22 22 23 /////////////////////////////////////////////////////// 64-bit int typeand other macros23 /////////////////////////////////////////////////////// path separators and other macros 24 24 #ifdef _WIN32 25 typedef __int64 LONGLONG;26 25 #define PATH_SEPARATOR_CHAR '\\' 27 26 #define PATH_SEPARATOR_STRING "\\" 28 27 #define FPU_THROWS_EXCEPTIONS 29 28 #else 30 #define LONGLONG long long int31 29 #define PATH_SEPARATOR_CHAR '/' 32 30 #define PATH_SEPARATOR_STRING "/" … … 75 73 76 74 #endif 77
Note: See TracChangeset
for help on using the changeset viewer.