ObjFW  Check-in [7ec3bb7673]

Overview
Comment:Move OF_ASSUME_NONNULL_BEGIN after all includes
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.8
Files: files | file ages | folders
SHA3-256: 7ec3bb7673749de07afc77237f43263c499504980032e220ac047c4c117b892c
User & Date: js on 2015-10-04 11:55:50
Other Links: branch diff | manifest | tags
Context
2015-10-04
11:57
Set version to 0.8.1 check-in: a5b3be82d6 user: js tags: 0.8
11:55
Move OF_ASSUME_NONNULL_BEGIN after all includes check-in: 7ec3bb7673 user: js tags: 0.8
11:33
Better length checks for write / send calls check-in: ad4e727d5b user: js tags: 0.8
Changes

Modified src/OFPlugin.h from [d9a4de6e06] to [d438cd40a3].

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"

OF_ASSUME_NONNULL_BEGIN

@class OFString;

#ifndef _WIN32
typedef void* of_plugin_handle_t;
#else
# include <windows.h>
typedef HMODULE of_plugin_handle_t;
#endif



/*!
 * @class OFPlugin OFPlugin.h ObjFW/OFPlugin.h
 *
 * @brief Provides a system for loading plugins at runtime.
 */
@interface OFPlugin: OFObject







<
<








>
>







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