mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 06:22:58 +00:00
- Implement NtCreateKey using the new parse routine.
- NtOpenKey should only return the key handle if the operation was successful. - Point to new parse routine, and rename it to CmParseKey instead of CmParseKey2 which was used during the test phase. - Delete all of the "cm" directory, this code is now fully gone; the new Configuration Manager is in place. - Move cm.h and cm_x.h to include/internal where they belong to and fix all their includers. svn path=/trunk/; revision=31252
This commit is contained in:
parent
ffa5f05eca
commit
0b6a2fda00
34 changed files with 11540 additions and 12666 deletions
|
@ -1,18 +0,0 @@
|
||||||
#ifndef __INCLUDE_CM_H
|
|
||||||
#define __INCLUDE_CM_H
|
|
||||||
|
|
||||||
#include "ntoskrnl/config/cm.h"
|
|
||||||
|
|
||||||
extern POBJECT_TYPE CmpKeyObjectType;
|
|
||||||
extern ERESOURCE CmpRegistryLock;
|
|
||||||
extern EX_PUSH_LOCK CmpHiveListHeadLock;
|
|
||||||
|
|
||||||
#define VERIFY_BIN_HEADER(x) ASSERT(x->HeaderId == REG_BIN_ID)
|
|
||||||
#define VERIFY_KEY_CELL(x) ASSERT(x->Signature == CM_KEY_NODE_SIGNATURE)
|
|
||||||
#define VERIFY_ROOT_KEY_CELL(x) ASSERT(x->Signature == CM_KEY_NODE_SIGNATURE)
|
|
||||||
#define VERIFY_VALUE_CELL(x) ASSERT(x->Signature == CM_KEY_VALUE_SIGNATURE)
|
|
||||||
#define VERIFY_VALUE_LIST_CELL(x)
|
|
||||||
#define VERIFY_KEY_OBJECT(x)
|
|
||||||
#define VERIFY_REGISTRY_HIVE(x)
|
|
||||||
|
|
||||||
#endif /*__INCLUDE_CM_H*/
|
|
File diff suppressed because it is too large
Load diff
|
@ -11,7 +11,6 @@
|
||||||
#include <ntoskrnl.h>
|
#include <ntoskrnl.h>
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include "cm.h"
|
|
||||||
|
|
||||||
/* GLOBALS *******************************************************************/
|
/* GLOBALS *******************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
#include <ntoskrnl.h>
|
#include <ntoskrnl.h>
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include "cm.h"
|
|
||||||
|
|
||||||
/* GLOBALS *******************************************************************/
|
/* GLOBALS *******************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
#include <ntoskrnl.h>
|
#include <ntoskrnl.h>
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include "cm.h"
|
|
||||||
|
|
||||||
/* GLOBALS *******************************************************************/
|
/* GLOBALS *******************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES *******************************************************************/
|
/* INCLUDES *******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
@ -224,19 +223,8 @@ CmpDoCreateChild(IN PHHIVE Hive,
|
||||||
PCELL_DATA CellData;
|
PCELL_DATA CellData;
|
||||||
ULONG StorageType;
|
ULONG StorageType;
|
||||||
LARGE_INTEGER SystemTime;
|
LARGE_INTEGER SystemTime;
|
||||||
BOOLEAN Hack = FALSE;
|
|
||||||
PCM_KEY_CONTROL_BLOCK Kcb;
|
PCM_KEY_CONTROL_BLOCK Kcb;
|
||||||
|
|
||||||
/* ReactOS Hack */
|
|
||||||
if (Name->Buffer[0] == OBJ_NAME_PATH_SEPARATOR)
|
|
||||||
{
|
|
||||||
/* Skip initial path separator */
|
|
||||||
Name->Buffer++;
|
|
||||||
Name->Length -= sizeof(OBJ_NAME_PATH_SEPARATOR);
|
|
||||||
Name->MaximumLength -= sizeof(OBJ_NAME_PATH_SEPARATOR);
|
|
||||||
Hack = TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Get the storage type */
|
/* Get the storage type */
|
||||||
StorageType = Stable;
|
StorageType = Stable;
|
||||||
if (Flags & REG_OPTION_VOLATILE) StorageType = Volatile;
|
if (Flags & REG_OPTION_VOLATILE) StorageType = Volatile;
|
||||||
|
@ -381,15 +369,6 @@ Quickie:
|
||||||
HvFreeCell(Hive, *KeyCell);
|
HvFreeCell(Hive, *KeyCell);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Check if we applied ReactOS hack */
|
|
||||||
if (Hack)
|
|
||||||
{
|
|
||||||
/* Restore name */
|
|
||||||
Name->Buffer--;
|
|
||||||
Name->Length += sizeof(OBJ_NAME_PATH_SEPARATOR);
|
|
||||||
Name->MaximumLength += sizeof(OBJ_NAME_PATH_SEPARATOR);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Return status */
|
/* Return status */
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
@ -996,7 +975,7 @@ CmpBuildHashStackAndLookupCache(IN PCM_KEY_BODY ParseObject,
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
CmpParseKey2(IN PVOID ParseObject,
|
CmpParseKey(IN PVOID ParseObject,
|
||||||
IN PVOID ObjectType,
|
IN PVOID ObjectType,
|
||||||
IN OUT PACCESS_STATE AccessState,
|
IN OUT PACCESS_STATE AccessState,
|
||||||
IN KPROCESSOR_MODE AccessMode,
|
IN KPROCESSOR_MODE AccessMode,
|
||||||
|
@ -1209,8 +1188,6 @@ CmpParseKey2(IN PVOID ParseObject,
|
||||||
/* Check if this was the last key for a create */
|
/* Check if this was the last key for a create */
|
||||||
if ((Last) && (ParseContext))
|
if ((Last) && (ParseContext))
|
||||||
{
|
{
|
||||||
PCM_KEY_BODY KeyBody;
|
|
||||||
|
|
||||||
/* Check if we're doing a link node */
|
/* Check if we're doing a link node */
|
||||||
if (ParseContext->CreateLink)
|
if (ParseContext->CreateLink)
|
||||||
{
|
{
|
||||||
|
@ -1241,11 +1218,6 @@ CmpParseKey2(IN PVOID ParseObject,
|
||||||
/* Check for reparse (in this case, someone beat us) */
|
/* Check for reparse (in this case, someone beat us) */
|
||||||
if (Status == STATUS_REPARSE) break;
|
if (Status == STATUS_REPARSE) break;
|
||||||
|
|
||||||
/* ReactOS Hack: Link this key to the parent */
|
|
||||||
KeyBody = (PCM_KEY_BODY)*Object;
|
|
||||||
InsertTailList(&ParentKcb->KeyBodyListHead,
|
|
||||||
&KeyBody->KeyBodyList);
|
|
||||||
|
|
||||||
/* Update disposition */
|
/* Update disposition */
|
||||||
ParseContext->Disposition = REG_CREATED_NEW_KEY;
|
ParseContext->Disposition = REG_CREATED_NEW_KEY;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "../cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
@ -18,7 +17,6 @@ BOOLEAN CmFirstTime = TRUE;
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
#if 0
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
NtCreateKey(OUT PHANDLE KeyHandle,
|
NtCreateKey(OUT PHANDLE KeyHandle,
|
||||||
|
@ -32,7 +30,9 @@ NtCreateKey(OUT PHANDLE KeyHandle,
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
KPROCESSOR_MODE PreviousMode = ExGetPreviousMode();
|
KPROCESSOR_MODE PreviousMode = ExGetPreviousMode();
|
||||||
CM_PARSE_CONTEXT ParseContext = {0};
|
CM_PARSE_CONTEXT ParseContext = {0};
|
||||||
|
HANDLE Handle;
|
||||||
PAGED_CODE();
|
PAGED_CODE();
|
||||||
|
DPRINT("NtCreateKey(OB 0x%wZ)\n", ObjectAttributes->ObjectName);
|
||||||
|
|
||||||
/* Setup the parse context */
|
/* Setup the parse context */
|
||||||
ParseContext.CreateOperation = TRUE;
|
ParseContext.CreateOperation = TRUE;
|
||||||
|
@ -46,13 +46,13 @@ NtCreateKey(OUT PHANDLE KeyHandle,
|
||||||
NULL,
|
NULL,
|
||||||
DesiredAccess,
|
DesiredAccess,
|
||||||
&ParseContext,
|
&ParseContext,
|
||||||
KeyHandle);
|
&Handle);
|
||||||
|
if (NT_SUCCESS(Status)) *KeyHandle = Handle;
|
||||||
|
|
||||||
/* Return data to user */
|
/* Return data to user */
|
||||||
if (Disposition) *Disposition = ParseContext.Disposition;
|
if (Disposition) *Disposition = ParseContext.Disposition;
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
|
@ -61,18 +61,26 @@ NtOpenKey(OUT PHANDLE KeyHandle,
|
||||||
IN POBJECT_ATTRIBUTES ObjectAttributes)
|
IN POBJECT_ATTRIBUTES ObjectAttributes)
|
||||||
{
|
{
|
||||||
CM_PARSE_CONTEXT ParseContext = {0};
|
CM_PARSE_CONTEXT ParseContext = {0};
|
||||||
|
HANDLE Handle;
|
||||||
|
NTSTATUS Status;
|
||||||
PAGED_CODE();
|
PAGED_CODE();
|
||||||
|
DPRINT("NtOpenKey(OB 0x%wZ)\n", ObjectAttributes->ObjectName);
|
||||||
|
|
||||||
/* Just let the object manager handle this */
|
/* Just let the object manager handle this */
|
||||||
return ObOpenObjectByName(ObjectAttributes,
|
Status = ObOpenObjectByName(ObjectAttributes,
|
||||||
CmpKeyObjectType,
|
CmpKeyObjectType,
|
||||||
ExGetPreviousMode(),
|
ExGetPreviousMode(),
|
||||||
NULL,
|
NULL,
|
||||||
DesiredAccess,
|
DesiredAccess,
|
||||||
&ParseContext,
|
&ParseContext,
|
||||||
KeyHandle);
|
&Handle);
|
||||||
|
if (NT_SUCCESS(Status)) *KeyHandle = Handle;
|
||||||
|
|
||||||
|
/* Return status */
|
||||||
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
NTAPI
|
NTAPI
|
||||||
NtDeleteKey(IN HANDLE KeyHandle)
|
NtDeleteKey(IN HANDLE KeyHandle)
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
#include "ntoskrnl.h"
|
#include "ntoskrnl.h"
|
||||||
#include "../cm.h"
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
#include <ntoskrnl.h>
|
#include <ntoskrnl.h>
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
#include "ntoskrnl/cm/cm.h"
|
|
||||||
#include "ntstrsafe.h"
|
#include "ntstrsafe.h"
|
||||||
|
|
||||||
typedef struct _INIT_BUFFER
|
typedef struct _INIT_BUFFER
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
#include "ob.h"
|
#include "ob.h"
|
||||||
#include "mm.h"
|
#include "mm.h"
|
||||||
#include "ex.h"
|
#include "ex.h"
|
||||||
|
#include "cm.h"
|
||||||
#include "ps.h"
|
#include "ps.h"
|
||||||
#include "cc.h"
|
#include "cc.h"
|
||||||
#include "io.h"
|
#include "io.h"
|
||||||
|
|
|
@ -142,12 +142,6 @@
|
||||||
<file>cmwraprs.c</file>
|
<file>cmwraprs.c</file>
|
||||||
<file>ntapi.c</file>
|
<file>ntapi.c</file>
|
||||||
</directory>
|
</directory>
|
||||||
<directory name="cm">
|
|
||||||
<file>ntfunc.c</file>
|
|
||||||
<file>regfile.c</file>
|
|
||||||
<file>registry.c</file>
|
|
||||||
<file>regobj.c</file>
|
|
||||||
</directory>
|
|
||||||
<directory name="dbgk">
|
<directory name="dbgk">
|
||||||
<file>dbgkutil.c</file>
|
<file>dbgkutil.c</file>
|
||||||
<file>dbgkobj.c</file>
|
<file>dbgkobj.c</file>
|
||||||
|
|
|
@ -138,9 +138,6 @@
|
||||||
<file>cmwraprs.c</file>
|
<file>cmwraprs.c</file>
|
||||||
<file>ntapi.c</file>
|
<file>ntapi.c</file>
|
||||||
</directory>
|
</directory>
|
||||||
<directory name="cm">
|
|
||||||
<file>regobj.c</file>
|
|
||||||
</directory>
|
|
||||||
<directory name="dbgk">
|
<directory name="dbgk">
|
||||||
<file>dbgkutil.c</file>
|
<file>dbgkutil.c</file>
|
||||||
<file>dbgkobj.c</file>
|
<file>dbgkobj.c</file>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue