* 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:
@ -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 ();
|
||||
|
Reference in New Issue
Block a user