mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Added a few more functions for registry
svn path=/trunk/; revision=542
This commit is contained in:
parent
a5e573f1b3
commit
0a1f866c8f
3 changed files with 443 additions and 265 deletions
15
reactos/drivers/dd/vga/vgaddi.h
Normal file
15
reactos/drivers/dd/vga/vgaddi.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
|
||||
//
|
||||
// PDEV
|
||||
// DESCRIPTION
|
||||
// This structure will contain all state information
|
||||
// required to maintain the video device
|
||||
// ACCESS
|
||||
// Allocated from non-paged pool by the GDI
|
||||
|
||||
typedef struct _PDEV
|
||||
{
|
||||
HANDLE KMDriver;
|
||||
} PDEV, *PPDEV;
|
||||
|
||||
|
|
@ -87,4 +87,12 @@ typedef struct _KEY_VALUE_PARTIAL_INFORMATION
|
|||
UCHAR Data[1];
|
||||
} KEY_VALUE_PARTIAL_INFORMATION, *PKEY_VALUE_PARTIAL_INFORMATION;
|
||||
|
||||
#define REG_OPTION_VOLATILE 0x00000000
|
||||
#define REG_OPTION_NON_VOLATILE 0x00000001
|
||||
#define REG_OPTION_CREATE_LINK 0x00000002
|
||||
#define REG_OPTION_BACKUP_RESTORE 0x00000004
|
||||
|
||||
#define REG_CREATED_NEW_KEY 1
|
||||
#define REG_OPENED_EXISTING_KEY 2
|
||||
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue