BoxedAppSDK_EnumVirtualRegKeys
Description
The function lists all virtual registry keys. The argument of the function is a pointer to a callback function that is called for each virtual key. The callback function returns TRUE to continue or FALSE to halt listing the keys.
Syntax
C++
typedef BOOL (WINAPI *P_BoxedAppSDK_EnumVirtualRegKeysCallback)(
HKEY hRootKey,
LPCTSTR szSubKey,
LPARAM lParam);
BOOL __stdcall BoxedAppSDK_EnumVirtualRegKeys(
P_BoxedAppSDK_EnumVirtualRegKeysCallback pEnumFunc,
LPARAM lParam);
Delphi
TBoxedAppSDK_EnumVirtualRegKeysCallbackA = function(hRootKey: HKEY; szSubKey: PAnsiChar; lParam: Cardinal): Boolean; stdcall;
TBoxedAppSDK_EnumVirtualRegKeysCallbackW = function(hRootKey: HKEY; szSubKey: PWideChar; lParam: Cardinal): Boolean; stdcall;
TBoxedAppSDK_EnumVirtualRegKeysCallback = TBoxedAppSDK_EnumVirtualRegKeysCallbackA;
function BoxedAppSDK_EnumVirtualRegKeys(
pEnumFunc: TBoxedAppSDK_EnumVirtualRegKeysCallback;
lParam: Cardinal): Boolean; stdcall;
function BoxedAppSDK_EnumVirtualRegKeysA(
pEnumFunc: TBoxedAppSDK_EnumVirtualRegKeysCallbackA;
lParam: Cardinal): Boolean; stdcall;
function BoxedAppSDK_EnumVirtualRegKeysW(
pEnumFunc: TBoxedAppSDK_EnumVirtualRegKeysCallbackW;
lParam: Cardinal): Boolean; stdcall;