mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-30 07:20:35 +00:00
98eb99c63a
- some CFByteOrder implementation - CFHost implementation with asynchronous resolver - CFPreferences skeletons - CIImage category in NSCIImageRep - NSTabView resizes item view even if autoresizing is off - NSCustomObject -description - NSNibLoading use of autorelease pool to reduce memory pressure - NSNib use of autorelease pool to reduce memory pressure - NSIBObjectData warning if it can't create custom instance instead of NSArray exception (adding nil) - changed NSBox to non-opaque, doesn't fill with background color - NSTableHeaderView use of setControlView: - NSMatrix use of setControlView: - NSAnimation/NSViewAnimation fixes to behave properly with timer - NSSheetContext check for nil - NSGraphicsStyle_uxtheme fix for menu separators - NSEvent -userData method added - minor cleanup of NSInvocation - NSDateFormatter fixes and update - NSArray+KVC.m fix for nil values
27 lines
515 B
C
27 lines
515 B
C
|
|
#ifdef __cplusplus
|
|
|
|
#if defined(__WIN32__)
|
|
#if defined(CFNETWORK_INSIDE_BUILD)
|
|
#define CFNETWORK_EXPORT extern "C" __declspec(dllexport)
|
|
#else
|
|
#define CFNETWORK_EXPORT extern "C" __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define CFNETWORK_EXPORT extern "C"
|
|
#endif
|
|
|
|
#else
|
|
|
|
#if defined(__WIN32__)
|
|
#if defined(CFNETWORK_INSIDE_BUILD)
|
|
#define CFNETWORK_EXPORT __declspec(dllexport) extern
|
|
#else
|
|
#define CFNETWORK_EXPORT __declspec(dllimport) extern
|
|
#endif
|
|
#else
|
|
#define CFNETWORK_EXPORT extern
|
|
#endif
|
|
|
|
#endif // __cplusplus
|