mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 14:36:01 +03:00
Fix includes.
This commit is contained in:
parent
ee657149b1
commit
59eff42dc4
3 changed files with 3 additions and 1 deletions
|
@ -41,6 +41,7 @@ set(csync_SRCS
|
||||||
|
|
||||||
vio/csync_vio.c
|
vio/csync_vio.c
|
||||||
vio/csync_vio_handle.c
|
vio/csync_vio_handle.c
|
||||||
|
vio/csync_vio_file_stat.c
|
||||||
)
|
)
|
||||||
|
|
||||||
set(csync_HDRS
|
set(csync_HDRS
|
||||||
|
|
|
@ -22,7 +22,6 @@
|
||||||
|
|
||||||
#include "c_lib.h"
|
#include "c_lib.h"
|
||||||
|
|
||||||
#include "vio/csync_vio_handle.h"
|
|
||||||
#include "vio/csync_vio_handle_private.h"
|
#include "vio/csync_vio_handle_private.h"
|
||||||
|
|
||||||
csync_vio_handle_t *csync_vio_handle_new(char *uri, csync_vio_method_handle_t *method_handle) {
|
csync_vio_handle_t *csync_vio_handle_new(char *uri, csync_vio_method_handle_t *method_handle) {
|
||||||
|
|
|
@ -23,6 +23,8 @@
|
||||||
#ifndef _CSYNC_VIO_HANDLE_PRIVATE_H
|
#ifndef _CSYNC_VIO_HANDLE_PRIVATE_H
|
||||||
#define _CSYNC_VIO_HANDLE_PRIVATE_H
|
#define _CSYNC_VIO_HANDLE_PRIVATE_H
|
||||||
|
|
||||||
|
#include "vio/csync_vio_handle.h"
|
||||||
|
|
||||||
struct csync_vio_handle_s {
|
struct csync_vio_handle_s {
|
||||||
char *uri;
|
char *uri;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue