en:docs:win16:api:shell:regopenkey

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:docs:win16:api:shell:regopenkey [2023/10/14 02:38] – created prokusheven:docs:win16:api:shell:regopenkey [2023/10/20 15:12] (current) prokushev
Line 4: Line 4:
  
 ===== Brief ===== ===== Brief =====
 +
 +Opens a Registration Database key. The szSubKey parameter points to the string that specifies the name of the key to open. The lpResult parameter is the address of the handle of the key opened. The hkey parameter is the handle of the parent key which may be HKEY_CLASSES_ROOT and cannot be NULL.
  
 ===== Syntax ===== ===== Syntax =====
  
 +LONG RegOpenKey(HKEY hkey, LPCSTR szSubKey, HKEY *lpResult);
  
 ===== Parameters ===== ===== Parameters =====
Line 13: Line 15:
 ===== Return Code ===== ===== Return Code =====
  
-None+Returns ERROR_SUCCESS, if it is successful. Otherwise, it returns an error value. 
  
 ===== Notes ===== ===== Notes =====