diff options
author | Dan Gudmundsson <[email protected]> | 2013-02-11 15:04:07 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2013-05-20 13:34:44 +0200 |
commit | d9cb8383625bd06e0f2d9548b392f199e7949e24 (patch) | |
tree | 0c962cebe316ff9515cbd51d50091cccd229117d /erts/etc/win32/init_file.h | |
parent | 8d63da45b86b46d3107fd70e0e96825afe066da0 (diff) | |
download | otp-d9cb8383625bd06e0f2d9548b392f199e7949e24.tar.gz otp-d9cb8383625bd06e0f2d9548b392f199e7949e24.tar.bz2 otp-d9cb8383625bd06e0f2d9548b392f199e7949e24.zip |
erts: Windows, use widechars for all paths during startup
To enable unicode paths as installation dir and allow
unicode in arguments
Diffstat (limited to 'erts/etc/win32/init_file.h')
-rw-r--r-- | erts/etc/win32/init_file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/etc/win32/init_file.h b/erts/etc/win32/init_file.h index 48d2d2df62..ae40e88520 100644 --- a/erts/etc/win32/init_file.h +++ b/erts/etc/win32/init_file.h @@ -36,10 +36,10 @@ typedef struct { } InitFile; /* Load a file structure from a disk file */ -InitFile *load_init_file(char *filename); +InitFile *load_init_file(wchar_t *filename); /* Stores a file structure into a disk file */ -int store_init_file(InitFile *inif, char *filename); +int store_init_file(InitFile *inif, wchar_t *filename); /* Create an empty file structure */ InitFile *create_init_file(void); |