30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
@interface OFSetWindowsRegistryValueFailedException: OFException
{
OFWindowsRegistryKey *_registryKey;
OFString *_Nullable _valueName;
OFData *_Nullable _data;
DWORD _type;
LSTATUS _status;
}
/**
* @brief The registry key on which setting the value failed.
*/
@property (readonly, nonatomic) OFWindowsRegistryKey *registryKey;
|
>
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
@interface OFSetWindowsRegistryValueFailedException: OFException
{
OFWindowsRegistryKey *_registryKey;
OFString *_Nullable _valueName;
OFData *_Nullable _data;
DWORD _type;
LSTATUS _status;
OF_RESERVE_IVARS(OFSetWindowsRegistryValueFailedException, 4)
}
/**
* @brief The registry key on which setting the value failed.
*/
@property (readonly, nonatomic) OFWindowsRegistryKey *registryKey;
|