#ifndef _NTOBAPI_H
//
// Objects, handles
//
#if (PHNT_MODE != PHNT_MODE_KERNEL)
/**
* The NtMakeTemporaryObject routine changes the attributes of an object to make it temporary.
*
* @param Handle Handle to an object of any type.
* @return NTSTATUS Successful or errant status.
* @sa https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/nf-wdm-zwmaketemporaryobject
*/
NTSYSCALLAPI
NTSTATUS
NTAPI
NtMakeTemporaryObject(
_In_ HANDLE Handle
);
View code on GitHub
#ifndef _NTZWAPI_H
NTSYSCALLAPI
NTSTATUS
NTAPI
ZwMakeTemporaryObject(
_In_ HANDLE Handle
);
View code on GitHub
// wdm.h
NTSYSAPI NTSTATUS ZwMakeTemporaryObject(
[in] HANDLE Handle
);
View the official Windows Driver Kit DDI reference
Removes the permanent flag from the object, restoring its lifetime to be dependant on the number of handles. This function is documented in Windows Driver Kit.
Handle
- a handle to a kernel object. The handle must grant DELETE
access.This function undoes the effects of NtMakePermanentObject
and specifying OBJ_PERMANENT
in OBJECT_ATTRIBUTES
.
The ZwMakeTemporaryObject routine changes the attributes of an object to make it temporary.
Handle
[in]Handle to an object of any type.
ZwMakeTemporaryObject returns STATUS_SUCCESS on success, or the appropriate NTSTATUS error code on failure.
ZwMakeTemporaryObject is a generic routine that operates on any type of object.
An object is permanent if it was created with the OBJ_PERMANENT object attribute specified. (For more information about object attributes, see InitializeObjectAttributes.) A permanent object is created with a reference count of 1, so it is not deleted when a driver dereferences it.
An object is temporary if it is not permanent. ZwMakeTemporaryObject turns the specified object into a temporary object. If the object is already temporary, this routine does nothing.
A temporary object has a name only as long as its handle count is greater than zero. When the handle count reaches zero, the system deletes the object name and appropriately adjusts the object's pointer count.
If the call to this function occurs in user mode, you should use the name "NtMakeTemporaryObject" instead of "ZwMakeTemporaryObject".
For calls from kernel-mode drivers, the NtXxx and ZwXxx versions of a Windows Native System Services routine can behave differently in the way that they handle and interpret input parameters. For more information about the relationship between the NtXxx and ZwXxx versions of a routine, see Using Nt and Zw Versions of the Native System Services Routines.
Using Nt and Zw Versions of the Native System Services Routines
This function is documented in Windows Driver Kit.
(Also available in Win2000 DDK)
Function clears object's PERMANENT flag, so it's live as long as the latest HANDLE
is closed.
HANDLE
to object to make temporary.