ObjFW  Check-in [a1ca5fe0fa]

Overview
Comment:Fix compilation on Windows
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | new-naming-convention
Files: files | file ages | folders
SHA3-256: a1ca5fe0fa796a5aa77d0d98cce4e449e5f1d6695546fe501b87c7c0bfd35b06
User & Date: js on 2021-04-19 23:53:06
Other Links: branch diff | manifest | tags
Context
2021-04-25
11:05
A few last renames check-in: 27103855c2 user: js tags: new-naming-convention
2021-04-19
23:53
Fix compilation on Windows check-in: a1ca5fe0fa user: js tags: new-naming-convention
22:20
Rename all remaining enums check-in: e97b03815f user: js tags: new-naming-convention
Changes

Modified src/OFPlugin.h from [f2f4fe0c3b] to [0127a43dd2].

25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
	OFDLOpenFlagLazy = RTLD_LAZY,
	OFDLOpenFlagNow  = RTLD_NOW
} OFDLOpenFlags;
#else
# include <windows.h>
typedef HMODULE OFPluginHandle;

enum OFDLOpenFlags {
	OFDLOpenFlagLazy = 0,
	OFDLOpenFlagNow  = 0
};
#endif

OF_ASSUME_NONNULL_BEGIN

/**
 * @class OFPlugin OFPlugin.h ObjFW/OFPlugin.h
 *







|


|







25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
	OFDLOpenFlagLazy = RTLD_LAZY,
	OFDLOpenFlagNow  = RTLD_NOW
} OFDLOpenFlags;
#else
# include <windows.h>
typedef HMODULE OFPluginHandle;

typedef enum OFDLOpenFlags {
	OFDLOpenFlagLazy = 0,
	OFDLOpenFlagNow  = 0
} OFDLOpenFlags;
#endif

OF_ASSUME_NONNULL_BEGIN

/**
 * @class OFPlugin OFPlugin.h ObjFW/OFPlugin.h
 *