2b274e9460
- Replace functions that are provided by MinGW with a Win32-based implementation - Explicitly export needed symbols from ocsync.dll - Rename share.h to sharemanager.h since the name clashes with one of the Windows headers and get included from there - Remove the timestamp from the fallback csync stderr logging, it's not used since we always provide a log callback
61 linhas
1.8 KiB
C
61 linhas
1.8 KiB
C
/*
|
|
https://raw.githubusercontent.com/littlstar/asprintf.c/20ce5207a4ecb24017b5a17e6cd7d006e3047146/asprintf.h
|
|
|
|
The MIT License (MIT)
|
|
|
|
Copyright (c) 2014 Little Star Media, Inc.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
*/
|
|
|
|
/**
|
|
* `asprintf.h' - asprintf.c
|
|
*
|
|
* copyright (c) 2014 joseph werle <joseph.werle@gmail.com>
|
|
*/
|
|
|
|
#ifndef HAVE_ASPRINTF
|
|
#ifndef ASPRINTF_H
|
|
#define ASPRINTF_H 1
|
|
|
|
#include <stdarg.h>
|
|
|
|
/**
|
|
* Sets `char **' pointer to be a buffer
|
|
* large enough to hold the formatted string
|
|
* accepting a `va_list' args of variadic
|
|
* arguments.
|
|
*/
|
|
|
|
int
|
|
vasprintf (char **, const char *, va_list);
|
|
|
|
/**
|
|
* Sets `char **' pointer to be a buffer
|
|
* large enough to hold the formatted
|
|
* string accepting `n' arguments of
|
|
* variadic arguments.
|
|
*/
|
|
|
|
int
|
|
asprintf (char **, const char *, ...);
|
|
|
|
#endif
|
|
#endif
|