diff options
Diffstat (limited to 'winsup/cygwin/dll_init.h')
-rw-r--r-- | winsup/cygwin/dll_init.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/dll_init.h b/winsup/cygwin/dll_init.h index a7601e78b..dd7dfb3d7 100644 --- a/winsup/cygwin/dll_init.h +++ b/winsup/cygwin/dll_init.h @@ -51,7 +51,7 @@ struct dll int count; dll_type type; int namelen; - char name[NT_MAX_PATH]; + WCHAR name[NT_MAX_PATH]; void detach (); int init (); }; @@ -68,7 +68,7 @@ public: int tot; int loaded_dlls; int reload_on_fork; - dll *operator [] (const char *name); + dll *operator [] (const PWCHAR name); dll *alloc (HINSTANCE, per_process *, dll_type); void detach (void *); void init (); |