Ignore:
Timestamp:
Jul 29, 2006, 6:43:07 AM (19 years ago)
Author:
bird
Message:

Two classes (CPMScreen and CPMKeyState) + the hook dll left (and debugging of course).

Location:
trunk/synergy/lib/arch
Files:
5 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/synergy/lib/arch/CArch.cpp

    r2749 r2752  
    4444#elif SYSAPI_UNIX
    4545#       include "CArchConsoleUnix.h"
    46 #       include "CArchDaemonUnix.h"
     46#   ifdef __OS2__
     47#               include "CArchDaemonNone.h"
     48#       else
     49#               include "CArchDaemonUnix.h"
     50#       endif
    4751#       include "CArchFileUnix.h"
    4852#       include "CArchLogUnix.h"
     
    5458#       include "CArchStringUnix.h"
    5559#       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
    5765#       include "CArchTimeUnix.h"
    5866#endif
  • trunk/synergy/lib/arch/CArchMultithreadPosix.h

    r2749 r2752  
    1515#ifndef CARCHMULTITHREADPOSIX_H
    1616#define CARCHMULTITHREADPOSIX_H
     17
     18#ifdef __OS2__
     19
     20#include "CArchMultithreadOS2.h"
     21
     22#else /* !__OS2__ */
    1723
    1824#include "IArchMultithread.h"
     
    111117};
    112118
     119#endif /* !__OS2__ */
    113120#endif
Note: See TracChangeset for help on using the changeset viewer.