mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 00:29:21 +00:00
fix(windaube): do not include Windows.h (avoid redefinitions)
This commit is contained in:
parent
7d10862c7f
commit
0cd07d1f86
1 changed files with 4 additions and 9 deletions
|
|
@ -21,15 +21,10 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|||
|
||||
#include <time.h>
|
||||
|
||||
#ifdef SQLITE_STORAGE_ENABLED
|
||||
#ifndef _WIN32
|
||||
#if !defined(__ANDROID__) && !defined(__QNXNTO__)
|
||||
#include <langinfo.h>
|
||||
#include <iconv.h>
|
||||
#include <string.h>
|
||||
#endif
|
||||
#else
|
||||
#include <Windows.h>
|
||||
#if defined(SQLITE_STORAGE_ENABLED) && !defined(_WIN32) && !defined(__ANDROID__) && !defined(__QNXNTO__)
|
||||
#include <langinfo.h>
|
||||
#include <iconv.h>
|
||||
#include <string.h>
|
||||
#endif
|
||||
|
||||
#define MAX_PATH_SIZE 1024
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue