Undocumented functions of NTDLL

2OOO, 8 December


NtSetInformationObject
NtSetInformationObject

NTSYSAPI 
NTSTATUS
NTAPI

NtSetInformationObject(
IN HANDLE ObjectHandle, IN OBJECT_INFORMATION_CLASS ObjectInformationClass, IN PVOID ObjectInformation, IN ULONG Length );



ObjectHandle
Open handle to any NT object.

ObjectInformationClass
See NtQueryObject for detailed description of possible information classes.

ObjectInformation
Buffor with data to set.

Length
Length of ObjectInformation buffer, in bytes.




Currently only one class in allowed in set mode: ObjectDataInformation. See description of OBJECT_DATA_INFORMATION structure.




Documented by:
Tomasz Nowak



Requirements:
Library: ntdll.lib


See also:
NtQueryObject
OBJECT_DATA_INFORMATION