mirror of git://erdgeist.org/opentracker
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.
16 lines
392 B
16 lines
392 B
/* This software was written by Dirk Engling <erdgeist@erdgeist.org> |
|
It is considered beerware. Prost. Skol. Cheers or whatever. */ |
|
|
|
#ifndef __OT_SYNC_H__ |
|
#define __OT_SYNC_H__ |
|
|
|
#include "trackerlogic.h" |
|
|
|
#ifdef WANT_TRACKER_SYNC |
|
enum { SYNC_IN, SYNC_OUT }; |
|
|
|
size_t return_changeset_for_tracker( char **reply ); |
|
int add_changeset_to_tracker( ot_byte *data, size_t len ); |
|
#endif |
|
|
|
#endif
|
|
|