in reply to Re^4: Unicode File Names
in thread Unicode File Names
in win32/perlhost.h. It appears to control the behavior, e.g.#define USING_WIDE() (0)
So, it hasn't been totally ripped out; just the ${^WIDE_SYSTEM_CALLS} switch, to specify the wide mode, has been removed. --Johnif (USING_WIDE()) { ... f = _wfopen(PerlDir_mapW(wBuffer), wMode); } else f = fopen(PerlDir_mapA(filename), mode);
|
|---|