Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Identifies the data type returned by the IOfflineFilesSetting::GetValueType method.
Syntax
typedef enum tagOFFLINEFILES_SETTING_VALUE_TYPE {
OFFLINEFILES_SETTING_VALUE_UI4 = 0,
OFFLINEFILES_SETTING_VALUE_BSTR,
OFFLINEFILES_SETTING_VALUE_BSTR_DBLNULTERM,
OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_UI4,
OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_BSTR
} OFFLINEFILES_SETTING_VALUE_TYPE;
Constants
OFFLINEFILES_SETTING_VALUE_UI4Value: 0 A single VT_UI4 value. Used to represent single REG_DWORD values. REG_DWORD is by far the most common type of setting value. |
OFFLINEFILES_SETTING_VALUE_BSTRA single VT_BSTR value. Used to represent single REG_SZ and REG_EXPAND_SZ values. |
OFFLINEFILES_SETTING_VALUE_BSTR_DBLNULTERMA single VT_BSTR value. The string is a double-null-terminated string containing multiple null-terminated substrings. Used to represent single REG_MULTI_SZ values. |
OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_UI4A 2-dimensional array. Each row is a name,value pair. Used to represent a set of REG_DWORD values under a registry key of the same name as the setting. Typically, the value names contain UNC paths and the values contain a parameter associated with each UNC path. Column 0 is the value name expressed as VT_BSTR. Column 1 is the VT_UI4 value. |
OFFLINEFILES_SETTING_VALUE_2DIM_ARRAY_BSTR_BSTRA 2-dimensional array. Each row is a name,value pair. Used to represent a set of BSTR values under a registry key of the same name as the setting. Typically, the value names contain UNC paths and the values contain a parameter associated with each UNC path. Column 0 is the value name expressed as VT_BSTR. Column 1 is the VT_BSTR value. |
Requirements
| Requirement | Value |
|---|---|
| Minimum supported client | Windows Vista |
| Minimum supported server | Windows Server 2008 |
| Header | cscobj.h |