2009-12-21 16:52:47 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2010-05-31 21:30:29 +00:00
|
|
|
#include "CServerApp.h"
|
2009-12-21 16:52:47 +00:00
|
|
|
|
|
|
|
#if WINAPI_MSWINDOWS
|
|
|
|
#include "CMSWindowsServerTaskBarReceiver.h"
|
|
|
|
#elif WINAPI_XWINDOWS
|
|
|
|
#include "CXWindowsServerTaskBarReceiver.h"
|
|
|
|
#elif WINAPI_CARBON
|
|
|
|
#include "COSXServerTaskBarReceiver.h"
|
|
|
|
#else
|
2010-05-31 21:30:29 +00:00
|
|
|
#error Platform not supported.
|
2009-12-21 16:52:47 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
2010-05-31 21:30:29 +00:00
|
|
|
main(int argc, char** argv)
|
2009-12-21 16:52:47 +00:00
|
|
|
{
|
2010-05-31 21:30:29 +00:00
|
|
|
CServerApp app;
|
|
|
|
return app.run(argc, argv, createTaskBarReceiver);
|
2009-12-21 16:52:47 +00:00
|
|
|
}
|