TBApiGetSettingDWORDEx API Call

 

Description

Returns a DWORD value from a named sub-tree and node in the UPDD registry branch.

Parameters

Device handle (see notes), sub-tree branch name, node name and area for storing returned value.

Returns

0 = fail, 1 = OK.

Notes

This will retrieve a DWORD value from the named sub-tree and node in the UPDD branch of the registry. Supply a valid device handle to retrieve items for a specific device or pass zero to retrieve values from the bundle branch.

See also

Other registry related API calls to set and retrieve registry entries.

 

Visual C++ Declaration/example

 

BOOL TBAPI TBApiGetSettingDWORDEx(HTBDEVICE aHandle,const TCHAR* aSubtree,const TCHAR* aName, unsigned long* val);

 

Visual Basic Declaration/example

 

Public Declare Function TBApiGetSettingDWORDEx Lib "TBapi" Alias "_DLL_TBApiGetSettingDWORDEx@16" (ByVal aHandle As Byte, ByVal aSubtree As String, ByVal aName As String, ByVal val As Long) As Long