mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 16:51:39 +00:00
[NTOS:OB] Rename object types to their official names to satisfy WinDbg
- Rename ObDirectoryType to ObpDirectoryObjectType and remove it from NDK (this is not exported!) - Rename ObSymbolicLinkType to ObpSymbolicLinkObjectType - Remove duplicated ObpTypeObjectType from ob.h
This commit is contained in:
parent
65f9783808
commit
2c909db295
11 changed files with 29 additions and 30 deletions
|
@ -3095,7 +3095,7 @@ ObInsertObject(IN PVOID Object,
|
|||
{
|
||||
/* Check if this was a symbolic link */
|
||||
if (OBJECT_TO_OBJECT_HEADER(InsertObject)->Type ==
|
||||
ObSymbolicLinkType)
|
||||
ObpSymbolicLinkObjectType)
|
||||
{
|
||||
/* Dereference it */
|
||||
ObDereferenceObject(InsertObject);
|
||||
|
@ -3129,7 +3129,7 @@ ObInsertObject(IN PVOID Object,
|
|||
else
|
||||
{
|
||||
/* Check if this is a symbolic link */
|
||||
if (ObjectType == ObSymbolicLinkType)
|
||||
if (ObjectType == ObpSymbolicLinkObjectType)
|
||||
{
|
||||
/* Create the internal name */
|
||||
ObpCreateSymbolicLinkName(Object);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue