@@ -20,11 +20,11 @@ #include OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFOpenWindowsRegistryKeyFailedException \ * OFOpenWindowsRegistryKeyFailedException.h \ * ObjFW/OFOpenWindowsRegistryKeyFailedException.h * * @brief An exception indicating that opening a Windows registry key failed. @@ -37,37 +37,37 @@ REGSAM _securityAndAccessRights; LPSECURITY_ATTRIBUTES _Nullable _securityAttributes; LSTATUS _status; } -/*! +/** * @brief The registry key on which opening the subkey failed. */ @property (readonly, nonatomic) OFWindowsRegistryKey *registryKey; -/*! +/** * @brief The path for the subkey that could not be opened. */ @property (readonly, nonatomic) OFString *path; -/*! +/** * @brief The options for the subkey that could not be opened. */ @property (readonly, nonatomic) DWORD options; -/*! +/** * @brief The security and access rights for the subkey that could not be * opened. */ @property (readonly, nonatomic) REGSAM securityAndAccessRights; -/*! +/** * @brief The status returned by RegOpenKeyEx(). */ @property (readonly, nonatomic) LSTATUS status; -/*! +/** * @brief Creates a new, autoreleased open Windows registry key failed * exception. * * @param registryKey The registry key on which opening the subkey failed * @param path The path for the subkey that could not be opened @@ -84,11 +84,11 @@ securityAndAccessRights: (REGSAM)securityAndAccessRights status: (LSTATUS)status; - (instancetype)init OF_UNAVAILABLE; -/*! +/** * @brief Initializes an already allocated open Windows registry key failed * exception. * * @param registryKey The registry key on which opening the subkey failed * @param path The path for the subkey that could not be opened