[NTOS:CM]

Replace a hardcoded value with something more readable.

svn path=/trunk/; revision=63506
This commit is contained in:
Hermès Bélusca-Maïto 2014-05-30 21:47:22 +00:00
parent 64fcc42ee5
commit a5a69f46e6
4 changed files with 11 additions and 6 deletions

View file

@ -1164,7 +1164,7 @@ CmpFlushNotifiesOnKeyBodyList(IN PCM_KEY_CONTROL_BLOCK Kcb,
{
/* Get the key body */
KeyBody = CONTAINING_RECORD(NextEntry, CM_KEY_BODY, KeyBodyList);
ASSERT(KeyBody->Type == '20yk');
ASSERT(KeyBody->Type == CM_KEY_BODY_TYPE);
/* Check for notifications */
if (KeyBody->NotifyBlock)

View file

@ -286,7 +286,7 @@ CmpDoCreateChild(IN PHHIVE Hive,
/* Setup the key body */
KeyBody = (PCM_KEY_BODY)(*Object);
KeyBody->Type = '20yk';
KeyBody->Type = CM_KEY_BODY_TYPE;
KeyBody->KeyControlBlock = NULL;
/* Check if we had a class */
@ -691,7 +691,7 @@ CmpDoOpen(IN PHHIVE Hive,
/* Get the key body and fill it out */
KeyBody = (PCM_KEY_BODY)(*Object);
KeyBody->KeyControlBlock = Kcb;
KeyBody->Type = '20yk';
KeyBody->Type = CM_KEY_BODY_TYPE;
KeyBody->ProcessID = PsGetCurrentProcessId();
KeyBody->NotifyBlock = NULL;

View file

@ -129,7 +129,7 @@ CmpDeleteKeyObject(PVOID DeletedObject)
CmpLockRegistry();
/* Make sure this is a valid key body */
if (KeyBody->Type == '20yk')
if (KeyBody->Type == CM_KEY_BODY_TYPE)
{
/* Get the KCB */
Kcb = KeyBody->KeyControlBlock;
@ -166,7 +166,7 @@ CmpCloseKeyObject(IN PEPROCESS Process OPTIONAL,
if (SystemHandleCount > 1) return;
/* Make sure we're a valid key body */
if (KeyBody->Type == '20yk')
if (KeyBody->Type == CM_KEY_BODY_TYPE)
{
/* Don't do anything if we don't have a notify block */
if (!KeyBody->NotifyBlock) return;
@ -1056,7 +1056,7 @@ CmpCreateRegistryRoot(VOID)
/* Initialize the object */
RootKey->KeyControlBlock = Kcb;
RootKey->Type = '20yk';
RootKey->Type = CM_KEY_BODY_TYPE;
RootKey->NotifyBlock = NULL;
RootKey->ProcessID = PsGetCurrentProcessId();

View file

@ -60,6 +60,11 @@
#define CM_KCB_INVALID_CACHED_INFO 0x40
#define CM_KCB_READ_ONLY_KEY 0x80
//
// CM_KEY_BODY Types
//
#define CM_KEY_BODY_TYPE 0x6B793032
//
// CM_KEY_VALUE Types
//