diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2006-03-09 09:01:08 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2006-03-09 09:01:08 +0000 |
commit | e9c8cb31930bd203942b326443e2112c1babf9a1 (patch) | |
tree | 8049aa9fe75c3ee67050b45743889010427661df /winsup/cygwin/autoload.cc | |
parent | 4db3b4496ebf3249542a18cb2017fc72e36637c5 (diff) | |
download | cygnal-e9c8cb31930bd203942b326443e2112c1babf9a1.tar.gz cygnal-e9c8cb31930bd203942b326443e2112c1babf9a1.tar.bz2 cygnal-e9c8cb31930bd203942b326443e2112c1babf9a1.zip |
* autoload.cc (NtClose): Define.
(NtOpenDirectoryObject): Define.
(NtQueryDirectoryObject): Define.
* fhandler_proc.cc: Include ctype.h and wchar.h.
(format_proc_partitions): Revamp loop over existing harddisks by
scanning the NT native \Device object directory and looking for
Harddisk entries.
* ntdll.h: Rearrange system call declarations alphabetically.
(DIRECTORY_QUERY): Define.
(struct _DIRECTORY_BASIC_INFORMATION): Define.
(NtOpenDirectoryObject): Declare.
(NtQueryDirectoryObject): Declare.
Diffstat (limited to 'winsup/cygwin/autoload.cc')
-rw-r--r-- | winsup/cygwin/autoload.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc index 548b4ab13..6b889a946 100644 --- a/winsup/cygwin/autoload.cc +++ b/winsup/cygwin/autoload.cc @@ -378,13 +378,16 @@ LoadDLLfunc (NetUserGetGroups, 28, netapi32) LoadDLLfunc (NetUserGetInfo, 16, netapi32) LoadDLLfunc (NetWkstaUserGetInfo, 12, netapi32) +LoadDLLfuncEx (NtClose, 4, ntdll, 1) LoadDLLfuncEx (NtCreateFile, 44, ntdll, 1) LoadDLLfuncEx (NtCreateSection, 28, ntdll, 1) LoadDLLfuncEx (NtCreateToken, 52, ntdll, 1) LoadDLLfuncEx (NtLockVirtualMemory, 16, ntdll, 1) LoadDLLfuncEx (NtMapViewOfSection, 40, ntdll, 1) +LoadDLLfuncEx (NtOpenDirectoryObject, 12, ntdll, 1) LoadDLLfuncEx (NtOpenFile, 24, ntdll, 1) LoadDLLfuncEx (NtOpenSection, 12, ntdll, 1) +LoadDLLfuncEx (NtQueryDirectoryObject, 28, ntdll, 1) LoadDLLfuncEx2 (NtQueryDirectoryFile, 44, ntdll, 1, 1) LoadDLLfuncEx2 (NtQueryInformationFile, 20, ntdll, 1, 1) LoadDLLfuncEx (NtQueryInformationProcess, 20, ntdll, 1) |