ObjFW  Check-in [477ec65403]

Overview
Comment:OFPlugin: Fix missing _Nullable
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 477ec6540343ad5437ee83aba019f5d28480e39fe38f989fa1ab7ee9898c3294
User & Date: js on 2018-02-10 11:09:45
Other Links: manifest | tags
Context
2018-02-10
11:41
Update buildsys check-in: 31fcfcffcd user: js tags: trunk
11:09
OFPlugin: Fix missing _Nullable check-in: 477ec65403 user: js tags: trunk
2018-02-09
00:05
tests: Include runtime in DYLD_FRAMEWORK_PATH check-in: 9a7f4ee2d0 user: js tags: trunk
Changes

Modified src/OFPlugin.h from [14c7d1c65f] to [5b64440460].

53
54
55
56
57
58
59
60
61
62
63
64
65
66
@end

#ifdef __cplusplus
extern "C" {
#endif
extern of_plugin_handle_t of_dlopen(OFString *path, int flags);
extern void *of_dlsym(of_plugin_handle_t handle, const char *symbol);
extern OFString *of_dlerror(void);
extern void of_dlclose(of_plugin_handle_t handle);
#ifdef __cplusplus
}
#endif

OF_ASSUME_NONNULL_END







|






53
54
55
56
57
58
59
60
61
62
63
64
65
66
@end

#ifdef __cplusplus
extern "C" {
#endif
extern of_plugin_handle_t of_dlopen(OFString *path, int flags);
extern void *of_dlsym(of_plugin_handle_t handle, const char *symbol);
extern OFString *_Nullable of_dlerror(void);
extern void of_dlclose(of_plugin_handle_t handle);
#ifdef __cplusplus
}
#endif

OF_ASSUME_NONNULL_END