Changeset 2752 for trunk/synergy/lib/arch
- Timestamp:
- Jul 29, 2006, 6:43:07 AM (19 years ago)
- Location:
- trunk/synergy/lib/arch
- Files:
-
- 5 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/synergy/lib/arch/CArch.cpp
r2749 r2752 44 44 #elif SYSAPI_UNIX 45 45 # include "CArchConsoleUnix.h" 46 # include "CArchDaemonUnix.h" 46 # ifdef __OS2__ 47 # include "CArchDaemonNone.h" 48 # else 49 # include "CArchDaemonUnix.h" 50 # endif 47 51 # include "CArchFileUnix.h" 48 52 # include "CArchLogUnix.h" … … 54 58 # include "CArchStringUnix.h" 55 59 # include "CArchSystemUnix.h" 56 # include "CArchTaskBarXWindows.h" 60 # ifdef __OS2__ /// @todo isn't this really WINAPI? 61 # include "CArchTaskBarOS2.h" 62 # else 63 # include "CArchTaskBarXWindows.h" 64 # endif 57 65 # include "CArchTimeUnix.h" 58 66 #endif -
trunk/synergy/lib/arch/CArchMultithreadPosix.h
r2749 r2752 15 15 #ifndef CARCHMULTITHREADPOSIX_H 16 16 #define CARCHMULTITHREADPOSIX_H 17 18 #ifdef __OS2__ 19 20 #include "CArchMultithreadOS2.h" 21 22 #else /* !__OS2__ */ 17 23 18 24 #include "IArchMultithread.h" … … 111 117 }; 112 118 119 #endif /* !__OS2__ */ 113 120 #endif
Note:
See TracChangeset
for help on using the changeset viewer.