/usr/include/synthesis/UI_util.h is in libsynthesis-dev 3.4.0.16.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | /*
* File: UI_util.h
*
* Author: Beat Forster
*
* Programming interface between a user application
* and the Synthesis SyncML client engine.
*
* Copyright (c) 2007-2011 by Synthesis AG + plan44.ch
*
*
*/
#include <string>
#include "synthesis/sync_dbapidef.h"
namespace sysync {
class UIContext {
public:
UI_Call_In uCI;
appPointer uDLL;
string uName;
}; // UIContext
/* Function definitions */
TSyError UI_Connect ( UI_Call_In &aCI,
appPointer &aDLL,
bool &aIsServer, cAppCharP aEngineName,
CVersion aPrgVersion,
uInt16 aDebugFlags );
TSyError UI_Disconnect( UI_Call_In aCI,
appPointer aDLL,
bool aIsServer );
} // namespace sysync
/* eof */
|