* globals.cc (ro_u_dll): New R/O unicode string.

* syscalls.cc (nt_path_has_executable_suffix): Add ro_u_dll to
	blessed_executable_suffixes array.  Explain why.
This commit is contained in:
Corinna Vinschen
2009-11-21 12:44:13 +00:00
parent fe6f5bbeaa
commit d9e9c7b5a7
3 changed files with 13 additions and 0 deletions

View File

@ -90,6 +90,7 @@ char *old_title;
UNICODE_STRING _RDATA ro_u_empty = _ROU (L"");
UNICODE_STRING _RDATA ro_u_lnk = _ROU (L".lnk");
UNICODE_STRING _RDATA ro_u_exe = _ROU (L".exe");
UNICODE_STRING _RDATA ro_u_dll = _ROU (L".dll");
UNICODE_STRING _RDATA ro_u_com = _ROU (L".com");
UNICODE_STRING _RDATA ro_u_scr = _ROU (L".scr");
UNICODE_STRING _RDATA ro_u_sys = _ROU (L".sys");