18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#import "OFException.h"
#import "OFWindowsRegistryKey.h"
#include <windows.h>
OF_ASSUME_NONNULL_BEGIN
/*!
* @class OFDeleteWindowsRegistryKeyFailedException \
* OFDeleteWindowsRegistryKeyFailedException.h \
* ObjFW/OFDeleteWindowsRegistryKeyFailedException.h
*
* @brief An exception indicating that deleting a Windows registry key failed.
*/
@interface OFDeleteWindowsRegistryKeyFailedException: OFException
{
OFWindowsRegistryKey *_registryKey;
OFString *_subkeyPath;
LSTATUS _status;
}
/*!
* @brief The registry key on which deleting the subkey failed.
*/
@property (readonly, nonatomic) OFWindowsRegistryKey *registryKey;
/*!
* @brief The path of the subkey which could not be deleted.
*/
@property (readonly, nonatomic) OFString *subkeyPath;
/*!
* @brief The status returned by RegDeleteKeyEx().
*/
@property (readonly, nonatomic) LSTATUS status;
/*!
* @brief Creates a new, autoreleased delete Windows registry key failed
* exception.
*
* @param registryKey The registry key on which deleting the subkey failed
* @param subkeyPath The path of the subkey which could not be deleted
* @param status The status returned by RegDeleteKeyEx()
* @return A new, autoreleased delete Windows registry key failed exception
*/
+ (instancetype)exceptionWithRegistryKey: (OFWindowsRegistryKey *)registryKey
subkeyPath: (OFString *)subkeyPath
status: (LSTATUS)status;
- (instancetype)init OF_UNAVAILABLE;
/*!
* @brief Initializes an already allocated delete Windows registry key failed
* exception.
*
* @param registryKey The registry key on which deleting the subkey failed
* @param subkeyPath The path of the subkey which could not be deleted
* @param status The status returned by RegDeleteKeyEx()
* @return An initialized delete Windows registry key failed exception
|
|
|
|
|
|
|
|
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#import "OFException.h"
#import "OFWindowsRegistryKey.h"
#include <windows.h>
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFDeleteWindowsRegistryKeyFailedException \
* OFDeleteWindowsRegistryKeyFailedException.h \
* ObjFW/OFDeleteWindowsRegistryKeyFailedException.h
*
* @brief An exception indicating that deleting a Windows registry key failed.
*/
@interface OFDeleteWindowsRegistryKeyFailedException: OFException
{
OFWindowsRegistryKey *_registryKey;
OFString *_subkeyPath;
LSTATUS _status;
}
/**
* @brief The registry key on which deleting the subkey failed.
*/
@property (readonly, nonatomic) OFWindowsRegistryKey *registryKey;
/**
* @brief The path of the subkey which could not be deleted.
*/
@property (readonly, nonatomic) OFString *subkeyPath;
/**
* @brief The status returned by RegDeleteKeyEx().
*/
@property (readonly, nonatomic) LSTATUS status;
/**
* @brief Creates a new, autoreleased delete Windows registry key failed
* exception.
*
* @param registryKey The registry key on which deleting the subkey failed
* @param subkeyPath The path of the subkey which could not be deleted
* @param status The status returned by RegDeleteKeyEx()
* @return A new, autoreleased delete Windows registry key failed exception
*/
+ (instancetype)exceptionWithRegistryKey: (OFWindowsRegistryKey *)registryKey
subkeyPath: (OFString *)subkeyPath
status: (LSTATUS)status;
- (instancetype)init OF_UNAVAILABLE;
/**
* @brief Initializes an already allocated delete Windows registry key failed
* exception.
*
* @param registryKey The registry key on which deleting the subkey failed
* @param subkeyPath The path of the subkey which could not be deleted
* @param status The status returned by RegDeleteKeyEx()
* @return An initialized delete Windows registry key failed exception
|