Changes between Version 2 and Version 3 of AppDev
- Timestamp:
- Nov 20, 2007, 12:06:05 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppDev
v2 v3 1 1 = Application development tips = 2 2 3 Cross-platform functions Most POSIX calls are supported on Unix and Windows. For areas that are different (e.g. scanning directories) BOINC supplies some generic functions with implementations for all platforms. Similar code may be available from other open-source projects. 3 == Cross-platform functions == 4 5 Most POSIX calls are supported on Unix and Windows. For areas that are different (e.g. scanning directories) BOINC supplies some generic functions with implementations for all platforms. Similar code may be available from other open-source projects. 4 6 5 7 double dtime():: return Unix time with fractional seconds … … 12 14 == Windows-specific issues == 13 15 14 * The set of 'standard' DLL differs somewhat among 9X/NT/2000/XP. To avoid crashing because a DLL is missing, call ::!LoadLibrary()and then get function pointers.15 * Visual Studio: set 'Create/Use Precompiled Header' to 'Automatically Generate' ( /YX) in C/C++ Precompiled Header project properties.16 * Visual Studio: change 'Compile As' to 'Compile as C++ Code ( /TP)' in C/C++ 'Compile As' project properties.16 * The set of 'standard' DLL differs somewhat among 9X/NT/2000/XP. To avoid crashing because a DLL is missing, call {{{::LoadLibrary()}}} and then get function pointers. 17 * Visual Studio: set 'Create/Use Precompiled Header' to 'Automatically Generate' ({{{/YX}}}) in C/C++ Precompiled Header project properties. 18 * Visual Studio: change 'Compile As' to 'Compile as C++ Code ({{{/TP}}})' in C/C++ 'Compile As' project properties. 17 19 18 20 == Unix-specific issues ==