diff options
Diffstat (limited to 'WebCore/platform/mac/WebCoreSystemInterface.mm')
-rw-r--r-- | WebCore/platform/mac/WebCoreSystemInterface.mm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/WebCore/platform/mac/WebCoreSystemInterface.mm b/WebCore/platform/mac/WebCoreSystemInterface.mm index 3a9c011..f3e0e77 100644 --- a/WebCore/platform/mac/WebCoreSystemInterface.mm +++ b/WebCore/platform/mac/WebCoreSystemInterface.mm @@ -66,6 +66,7 @@ void (*wkSetCGFontRenderingMode)(CGContextRef, NSFont*); void (*wkSetDragImage)(NSImage*, NSPoint offset); void (*wkSetPatternBaseCTM)(CGContextRef, CGAffineTransform); void (*wkSetPatternPhaseInUserSpace)(CGContextRef, CGPoint point); +CGAffineTransform (*wkGetUserToBaseCTM)(CGContextRef); void (*wkSetUpFontCache)(); void (*wkSignalCFReadStreamEnd)(CFReadStreamRef stream); void (*wkSignalCFReadStreamHasBytes)(CFReadStreamRef stream); @@ -106,3 +107,9 @@ void (*wkReleaseStyleGroup)(void* group); ATSUFontID (*wkGetNSFontATSUFontId)(NSFont*); BOOL (*wkSupportsMultipartXMixedReplace)(NSMutableURLRequest *); #endif + +#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) && !defined(BUILDING_ON_SNOW_LEOPARD) +NSMutableArray *(*wkNoteOpenPanelFiles)(NSArray *); +#else +void* wkNoteOpenPanelFiles; +#endif |