Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2014-08-26 13:29:42 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-08-26 13:29:42 +0400
commit902bb7a198c2fcefaf2ac741efadfc10d891fac7 (patch)
tree956fd1ebb6717878dfa1140084aab06b98fa8b1f /test
parent4fc044d368b2fe54f153ff33d761428a6b8f595d (diff)
parent03dc27a3271fff5bc8be06e1bd714fbf528a2d69 (diff)
Merge remote-tracking branch 'origin/master' into move_lib_to_sep_dir
Conflicts: src/CMakeLists.txt src/gui/accountsettings.cpp src/gui/folderwizard.cpp src/gui/settingsdialog.cpp src/libsync/syncengine.h
Diffstat (limited to 'test')
-rw-r--r--test/testcsyncsqlite.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/testcsyncsqlite.h b/test/testcsyncsqlite.h
index 92bdca2af..0765668e1 100644
--- a/test/testcsyncsqlite.h
+++ b/test/testcsyncsqlite.h
@@ -16,10 +16,18 @@ class TestCSyncSqlite : public QObject
Q_OBJECT
private:
+ /* Attention !!!!!!!!!!!!!!!!!!!
+ * This struct MY_CSYNC has to be a copy of the CSYNC struct defined
+ * in csync_private.h until the end of struct statedb.
+ * Subsequent functions cast the struct to CSYNC. In order to get the
+ * same values as in the original struct, the start must be the same.
+ */
typedef struct {
struct {
csync_auth_callback auth_function;
void *userdata;
+ csync_update_callback update_callback;
+ void *update_callback_userdata;
} callbacks;
c_strlist_t *excludes;