25 lines
367 B
C
25 lines
367 B
C
//
|
|
// Created by mingming wanng on 2023/11/2.
|
|
//
|
|
|
|
#ifndef TDENGINE_RSYNC_H
|
|
#define TDENGINE_RSYNC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "tarray.h"
|
|
|
|
void stopRsync();
|
|
void startRsync();
|
|
int uploadRsync(char* id, char* path);
|
|
int downloadRsync(char* id, char* path);
|
|
int deleteRsync(char* id);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // TDENGINE_RSYNC_H
|