CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1
  1. #1
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Windows SDK Registry: How can I access the registry?

    Q: How can I access the registry?

    A: You can access the registry via the following API functions:

    Code:
    RegCloseKey()
    RegConnectRegistry()
    RegCreateKey()
    RegCreateKeyEx()
    RegDeleteKey()
    RegDeleteValue()
    RegEnumKey()
    RegEnumKeyEx()
    RegEnumValue()
    RegFlushKey()
    RegGetKeySecurity()
    RegLoadKey()
    RegNotifyChangeKeyValue()
    RegOpenKey()
    RegOpenKeyEx()
    RegQueryInfoKey()
    RegQueryMultipleValues()
    RegQueryValue()
    RegQueryValueEx()
    RegReplaceKey()
    RegRestoreKey()
    RegSaveKey()
    RegSetKeySecurity()
    RegSetValue()
    RegSetValueEx()
    RegUnLoadKey()
    Last edited by Andreas Masur; July 25th, 2005 at 03:09 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured