May 2007
Intermediate to advanced
1152 pages
30h 53m
English
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 = &H4 Const REG_OPTION_VOLATILE As Long = &H1 Const REG_OPTION_NON_VOLATILE As Long = &H0 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 ...
Read now
Unlock full access