L.3. Registry API Constant and User-Defined Type Declarations

To help you with this book, and so that you won't have to go searching for them, the following is a list of all the Constant and User-Defined Type declarations you'll need when using the Registry APIs.

'Key declarations
Const HKEY_CLASSES_ROOT As Long = &H80000000
Const HKEY_CURRENT_CONFIG As Long = &H80000005
Const HKEY_CURRENT_USER As Long = &H80000001
Const HKEY_DYN_DATA As Long = &H80000006
Const HKEY_LOCAL_MACHINE As Long = &H80000002
Const HKEY_PERF_ROOT As Long = HKEY_LOCAL_MACHINE
Const HKEY_PERFORMANCE_DATA As Long = &H80000004
Const HKEY_USERS As Long = &H80000003

'Parameter declarations
Const REG_NOTIFY_CHANGE_ATTRIBUTES As Long = &H2
Const REG_NOTIFY_CHANGE_LAST_SET As Long = &H4
Const REG_NOTIFY_CHANGE_NAME As Long = &H1
Const REG_NOTIFY_CHANGE_SECURITY As Long = &H8
Const REG_CREATED_NEW_KEY As Long = &H1
Const REG_OPENED_EXISTING_KEY As Long = &H2
Const REG_OPTION_BACKUP_RESTORE As Long = 4
Const REG_OPTION_VOLATILE As Long = 1
Const REG_OPTION_NON_VOLATILE As Long = 0
Const STANDARD_RIGHTS_ALL As Long = &H1F0000
Const SYNCHRONIZE As Long = &H100000 Const READ_CONTROL As Long = &H20000 Const STANDARD_RIGHTS_READ As Long = (READ_CONTROL) Const STANDARD_RIGHTS_WRITE As Long = (READ_CONTROL) Const KEY_CREATE_LINK As Long = &H20 Const KEY_CREATE_SUB_KEY As Long = &H4 Const KEY_ENUMERATE_SUB_KEYS As Long = &H8 Const KEY_NOTIFY As Long = &H10 Const KEY_QUERY_VALUE As Long = &H1 Const KEY_SET_VALUE As Long = ...

Get Access 2003 VBA Programmer's Reference now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.