Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
ce08973f
Commit
ce08973f
authored
Oct 28, 2005
by
Ivan Leo Puoti
Committed by
Alexandre Julliard
Oct 28, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix NtQueryDirectoryObject prototype, documentation, and the
definition of the structure it uses.
parent
d7d8998d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
22 deletions
+16
-22
om.c
dlls/ntdll/om.c
+13
-18
winternl.h
include/winternl.h
+3
-4
No files found.
dlls/ntdll/om.c
View file @
ce08973f
...
...
@@ -393,31 +393,26 @@ NTSTATUS WINAPI NtCreateDirectoryObject(
* Read information from a namespace directory.
*
* PARAMS
* Dir
ObjHandle [I] Object handle
*
DirObjInformation [O] Buffer to hold the data read
* Dir
ectoryHandle [I] Handle to a directory object
*
Buffer [O] Buffer to hold the read data
* BufferLength [I] Size of the buffer in bytes
*
GetNextIndex [I] Set ObjectIndex to TRUE=next object, FALSE=last object
*
IgnoreInputIndex [I] Start reading at index TRUE=0, FALSE=ObjectIndex
*
ObjectIndex [I/O] 0 based index into the directory, see IgnoreInputIndex and GetNextIndex
*
DataWritten
[O] Caller supplied storage for the number of bytes written (or NULL)
*
ReturnSingleEntry [I] If TRUE, return a single entry, if FALSE, return as many as fit in the buffer
*
RestartScan [I] If TRUE, start scanning from the start, if FALSE, scan from Context
*
Context [I/O] Indicates what point of the directory the scan is at
*
ReturnLength
[O] Caller supplied storage for the number of bytes written (or NULL)
*
* RETURNS
* Success: ERROR_SUCCESS.
* Failure: An NTSTATUS error code.
*/
NTSTATUS
WINAPI
NtQueryDirectoryObject
(
IN
HANDLE
DirObjHandle
,
OUT
POBJDIR_INFORMATION
DirObjInformation
,
IN
ULONG
BufferLength
,
IN
BOOLEAN
GetNextIndex
,
IN
BOOLEAN
IgnoreInputIndex
,
IN
OUT
PULONG
ObjectIndex
,
OUT
PULONG
DataWritten
OPTIONAL
)
NTSTATUS
WINAPI
NtQueryDirectoryObject
(
IN
HANDLE
DirectoryHandle
,
OUT
PDIRECTORY_BASIC_INFORMATION
Buffer
,
IN
ULONG
BufferLength
,
IN
BOOLEAN
ReturnSingleEntry
,
IN
BOOLEAN
RestartScan
,
IN
OUT
PULONG
Context
,
OUT
PULONG
ReturnLength
OPTIONAL
)
{
FIXME
(
"(%p,%p,0x%08lx,0x%08x,0x%08x,%p,%p) stub
\n
"
,
DirObjHandle
,
DirObjInformation
,
BufferLength
,
GetNextIndex
,
IgnoreInputIndex
,
ObjectIndex
,
DataWritten
);
return
0xc0000000
;
/* We don't have any. Whatever. (Yet.) */
FIXME
(
"(%p,%p,0x%08lx,0x%08x,0x%08x,%p,%p), stub
\n
"
,
DirectoryHandle
,
Buffer
,
BufferLength
,
ReturnSingleEntry
,
RestartScan
,
Context
,
ReturnLength
);
return
STATUS_NOT_IMPLEMENTED
;
}
/*
...
...
include/winternl.h
View file @
ce08973f
...
...
@@ -1629,11 +1629,10 @@ typedef enum _KPROFILE_SOURCE {
ProfileMaximum
}
KPROFILE_SOURCE
,
*
PKPROFILE_SOURCE
;
typedef
struct
_
OBJDIR
_INFORMATION
{
typedef
struct
_
DIRECTORY_BASIC
_INFORMATION
{
UNICODE_STRING
ObjectName
;
UNICODE_STRING
ObjectTypeName
;
BYTE
Data
[
1
];
}
OBJDIR_INFORMATION
,
*
POBJDIR_INFORMATION
;
}
DIRECTORY_BASIC_INFORMATION
,
*
PDIRECTORY_BASIC_INFORMATION
;
typedef
struct
_INITIAL_TEB
{
PVOID
StackBase
;
...
...
@@ -1811,7 +1810,7 @@ NTSTATUS WINAPI NtQueryAttributesFile(const OBJECT_ATTRIBUTES*,FILE_BASIC_INFOR
NTSTATUS
WINAPI
NtQueryDefaultLocale
(
BOOLEAN
,
LCID
*
);
NTSTATUS
WINAPI
NtQueryDefaultUILanguage
(
LANGID
*
);
NTSTATUS
WINAPI
NtQueryDirectoryFile
(
HANDLE
,
HANDLE
,
PIO_APC_ROUTINE
,
PVOID
,
PIO_STATUS_BLOCK
,
PVOID
,
ULONG
,
FILE_INFORMATION_CLASS
,
BOOLEAN
,
PUNICODE_STRING
,
BOOLEAN
);
NTSTATUS
WINAPI
NtQueryDirectoryObject
(
HANDLE
,
P
OBJDIR
_INFORMATION
,
ULONG
,
BOOLEAN
,
BOOLEAN
,
PULONG
,
PULONG
);
NTSTATUS
WINAPI
NtQueryDirectoryObject
(
HANDLE
,
P
DIRECTORY_BASIC
_INFORMATION
,
ULONG
,
BOOLEAN
,
BOOLEAN
,
PULONG
,
PULONG
);
NTSTATUS
WINAPI
NtQueryEaFile
(
HANDLE
,
PIO_STATUS_BLOCK
,
PVOID
,
ULONG
,
BOOLEAN
,
PVOID
,
ULONG
,
PVOID
,
BOOLEAN
);
NTSTATUS
WINAPI
NtQueryEvent
(
HANDLE
,
EVENT_INFORMATION_CLASS
,
PVOID
,
ULONG
,
PULONG
);
NTSTATUS
WINAPI
NtQueryFullAttributesFile
(
const
OBJECT_ATTRIBUTES
*
,
FILE_NETWORK_OPEN_INFORMATION
*
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment