* dll_init.cc: Throughout convert to use long pathnames.

* dll_init.h (struct dll): Change name to WCHAR, change operator [] to
	take PWCHAR argument.
This commit is contained in:
Corinna Vinschen
2008-08-13 08:25:44 +00:00
parent e587bc0e7d
commit 69d704beff
3 changed files with 22 additions and 15 deletions

View File

@ -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 ();