mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-26 12:41:35 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
23 lines
272 B
C
23 lines
272 B
C
#ifndef CPLATFORM_H
|
|
#define CPLATFORM_H
|
|
|
|
#include "common.h"
|
|
|
|
#if WINDOWS_LIKE
|
|
|
|
#include "CWin32Platform.h"
|
|
typedef CWin32Platform CPlatform;
|
|
|
|
#elif UNIX_LIKE
|
|
|
|
#include "CUnixPlatform.h"
|
|
typedef CUnixPlatform CPlatform;
|
|
|
|
#else
|
|
|
|
#error Unsupported platform
|
|
|
|
#endif
|
|
|
|
#endif
|