mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-25 14:36:01 +03:00
Make csync_vio_file_stat functions public.
This commit is contained in:
parent
7bd9c7753d
commit
c1bd966c5c
4 changed files with 6 additions and 34 deletions
|
@ -21,7 +21,7 @@
|
|||
*/
|
||||
|
||||
#include "c_lib.h"
|
||||
#include "vio/csync_vio_file_stat_private.h"
|
||||
#include "vio/csync_vio_file_stat.h"
|
||||
|
||||
csync_vio_file_stat_t *csync_vio_file_stat_new(void) {
|
||||
csync_vio_file_stat_t *file_stat = NULL;
|
||||
|
|
|
@ -94,4 +94,8 @@ struct csync_vio_file_stat_s {
|
|||
void *reserved3;
|
||||
};
|
||||
|
||||
csync_vio_file_stat_t *csync_vio_file_stat_new(void);
|
||||
|
||||
void csync_vio_file_stat_destroy(csync_vio_file_stat_t *fstat);
|
||||
|
||||
#endif /* _CSYNC_VIO_METHOD_H */
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
/*
|
||||
* libcsync -- a library to sync a directory with another
|
||||
*
|
||||
* Copyright (c) 2008 by Andreas Schneider <mail@cynapses.org>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* as published by the Free Software Foundation; either version 2
|
||||
* of the License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*
|
||||
* vim: ft=c.doxygen ts=2 sw=2 et cindent
|
||||
*/
|
||||
|
||||
#ifndef _CSYNC_VIO_FILE_STAT_PRIVATE_H
|
||||
#define _CSYNC_VIO_FILE_STAT_PRIVATE_H
|
||||
|
||||
#include "vio/csync_vio_file_stat.h"
|
||||
|
||||
csync_vio_file_stat_t *csync_vio_file_stat_new(void);
|
||||
|
||||
void csync_vio_file_stat_destroy(csync_vio_file_stat_t *fstat);
|
||||
|
||||
#endif /* _CSYNC_VIO_FILE_STAT_PRIVATE_H */
|
|
@ -1,6 +1,6 @@
|
|||
#include "support.h"
|
||||
|
||||
#include "vio/csync_vio_file_stat_private.h"
|
||||
#include "vio/csync_vio_file_stat.h"
|
||||
|
||||
START_TEST (check_csync_vio_file_stat_new)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue