blob: 0f20306689717cf4fe7d7021e3c0eb698525011d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*++
Copyright (c) 1994 Microsoft Corporation
Module Name:
regkeys.cxx
Abstract:
This file contains ntsd debugger extensions for RPC NDR.
Author:
Ryszard K. Kott (ryszardk) September 8, 1994
Revision History:
--*/
extern "C" {
#include <sysinc.h>
#include <ntsdexts.h>
#include <ntdbg.h>
}
extern DWORD NdrRegKeyOutputLimit;
extern DWORD NdrRegKeyMarshalling;
extern DWORD NdrRegKeyPickling;
int
InitializeRegistry( void );
DWORD
GetNdrDbgKey(
HKEY * pNdrDbgKey );
int
GetNdrRegistryKey(
char * KeyName,
DWORD * pKeyValue );
int
SetNdrRegistryKey(
char * KeyName,
DWORD KeyValue );
|