ObjFW  Check-in [7504be1934]

Overview
Comment:OFPlugin: Documentation fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | 1.1
Files: files | file ages | folders
SHA3-256: 7504be1934baba2a3bf30c6f2229c8c743e08fc367d8d636393f5978a13464e6
User & Date: js on 2024-10-27 11:39:26
Other Links: branch diff | manifest | tags
Context
2024-10-27
11:39
OFPlugin: Documentation fix Leaf check-in: 7504be1934 user: js tags: 1.1
2024-10-19
14:08
GitHub Actions: Fix OpenBSD check-in: a19bdd9d31 user: js tags: 1.1
Changes

Modified src/OFPlugin.h from [3c7ae9a953] to [aadfe9fccd].

53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
 * @return The plugin path
 */
+ (OFString *)pathForName: (OFString *)name;

/**
 * @brief Creates a new OFPlugin by loading the plugin with the specified path.
 *
 * @param path The path to the plugin file. The suffix is appended
 *	       automatically.
 * @return An new, autoreleased OFPlugin
 * @throw OFLoadPluginFailedException The plugin could not be loaded
 */
+ (instancetype)pluginWithPath: (OFString *)path;

/**
 * @brief Initializes an already allocated OFPlugin by loading the plugin with
 *	  the specified path.
 *
 * @param path The path to the plugin file. The suffix is appended
 *	       automatically.
 * @return An initialized OFPlugin
 * @throw OFLoadPluginFailedException The plugin could not be loaded
 */
- (instancetype)initWithPath: (OFString *)path;

/**
 * @brief Returns the address for the specified symbol, or `nil` if not found.







|
<









|
<







53
54
55
56
57
58
59
60

61
62
63
64
65
66
67
68
69
70

71
72
73
74
75
76
77
 * @return The plugin path
 */
+ (OFString *)pathForName: (OFString *)name;

/**
 * @brief Creates a new OFPlugin by loading the plugin with the specified path.
 *
 * @param path The path to the plugin file

 * @return An new, autoreleased OFPlugin
 * @throw OFLoadPluginFailedException The plugin could not be loaded
 */
+ (instancetype)pluginWithPath: (OFString *)path;

/**
 * @brief Initializes an already allocated OFPlugin by loading the plugin with
 *	  the specified path.
 *
 * @param path The path to the plugin file

 * @return An initialized OFPlugin
 * @throw OFLoadPluginFailedException The plugin could not be loaded
 */
- (instancetype)initWithPath: (OFString *)path;

/**
 * @brief Returns the address for the specified symbol, or `nil` if not found.