Commit 416f4bf1 authored by Sergey Lyubka's avatar Sergey Lyubka

Merge pull request #321 from pavel-pimenov/master

Add #ifndef MONGOOSE_NO_FILESYSTEM
parents 940b65e4 f9a99530
...@@ -443,6 +443,7 @@ void *mg_start_thread(void *(*f)(void *), void *p) { ...@@ -443,6 +443,7 @@ void *mg_start_thread(void *(*f)(void *), void *p) {
#endif // MONGOOSE_NO_THREADS #endif // MONGOOSE_NO_THREADS
#ifdef _WIN32 #ifdef _WIN32
#ifndef MONGOOSE_NO_FILESYSTEM
// Encode 'path' which is assumed UTF-8 string, into UNICODE string. // Encode 'path' which is assumed UTF-8 string, into UNICODE string.
// wbuf and wbuf_len is a target buffer and its length. // wbuf and wbuf_len is a target buffer and its length.
static void to_wchar(const char *path, wchar_t *wbuf, size_t wbuf_len) { static void to_wchar(const char *path, wchar_t *wbuf, size_t wbuf_len) {
...@@ -487,6 +488,7 @@ static int mg_open(const char *path, int flag) { ...@@ -487,6 +488,7 @@ static int mg_open(const char *path, int flag) {
return _wopen(wpath, flag); return _wopen(wpath, flag);
} }
#endif #endif
#endif // MONGOOSE_NO_FILESYSTEM
static void set_close_on_exec(int fd) { static void set_close_on_exec(int fd) {
#ifdef _WIN32 #ifdef _WIN32
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment