Overview
Comment: | Move OF_ASSUME_NONNULL_BEGIN after all includes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
01088a20a4023cac08ac3f5bfbb9cbf4 |
User & Date: | js on 2015-10-04 11:55:00 |
Other Links: | manifest | tags |
Context
2015-10-04
| ||
11:59 | Fix wrong date in ChangeLog check-in: 3a87a5c008 user: js tags: trunk | |
11:55 | Move OF_ASSUME_NONNULL_BEGIN after all includes check-in: 01088a20a4 user: js tags: trunk | |
11:30 | Better length checks for write / send calls check-in: fc73801932 user: js tags: trunk | |
Changes
Modified src/OFPlugin.h from [d9a4de6e06] to [d438cd40a3].
︙ | ︙ | |||
12 13 14 15 16 17 18 | * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFObject.h" | < < > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFObject.h" @class OFString; #ifndef _WIN32 typedef void* of_plugin_handle_t; #else # include <windows.h> typedef HMODULE of_plugin_handle_t; #endif OF_ASSUME_NONNULL_BEGIN /*! * @class OFPlugin OFPlugin.h ObjFW/OFPlugin.h * * @brief Provides a system for loading plugins at runtime. */ @interface OFPlugin: OFObject |
︙ | ︙ |