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/beam/global.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/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 6e86de3ebf..524db2a2eb 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -1602,6 +1602,8 @@ Sint erts_native_filename_need(Eterm ioterm, int encoding); void erts_copy_utf8_to_utf16_little(byte *target, byte *bytes, int num_chars); int erts_analyze_utf8(byte *source, Uint size, byte **err_pos, Uint *num_chars, int *left); +char *erts_convert_filename_to_native(Eterm name, ErtsAlcType_t alloc_type, int allow_empty); + #define ERTS_UTF8_OK 0 #define ERTS_UTF8_INCOMPLETE 1 #define ERTS_UTF8_ERROR 2 |