diff options
author | Patrik Nyblom <[email protected]> | 2010-11-22 16:24:59 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2010-11-30 16:33:17 +0100 |
commit | fed20c731b91f1debb11a809cc5999d8b04dd293 (patch) | |
tree | 801b87703f713758c2e339792555501b0e012f7b /erts/emulator/zlib/zutil.h | |
parent | 9622ab2132e2501ee5769357a914dcc6635e515c (diff) | |
download | otp-fed20c731b91f1debb11a809cc5999d8b04dd293.tar.gz otp-fed20c731b91f1debb11a809cc5999d8b04dd293.tar.bz2 otp-fed20c731b91f1debb11a809cc5999d8b04dd293.zip |
Teach spawn_executable about Unicode
Also corrected compressed files on Windows
Diffstat (limited to 'erts/emulator/zlib/zutil.h')
-rw-r--r-- | erts/emulator/zlib/zutil.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/zlib/zutil.h b/erts/emulator/zlib/zutil.h index d560382691..a8872e1c88 100644 --- a/erts/emulator/zlib/zutil.h +++ b/erts/emulator/zlib/zutil.h @@ -142,6 +142,7 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ #ifdef WIN32 # ifndef __CYGWIN__ /* Cygwin is Unix, not Win32 */ # define OS_CODE 0x0b +# define F_OPEN(name, mode) _wfopen((WCHAR *)(name), (WCHAR *)(mode)) /* Unicode */ # endif #endif |