You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
405 B
19 lines
405 B
#include <opensync/opensync.h>
|
|
#include <opensync/opensync_internals.h>
|
|
#include <sys/stat.h>
|
|
#include <stdio.h>
|
|
#include <glib.h>
|
|
#include <string.h>
|
|
#include <config.h>
|
|
|
|
#include <libxml/xmlmemory.h>
|
|
#include <libxml/parser.h>
|
|
|
|
typedef struct mock_env {
|
|
char *path;
|
|
OSyncMember *member;
|
|
GDir *dir;
|
|
OSyncHashTable *hashtable;
|
|
osync_bool committed_all;
|
|
} mock_env;
|