ecore_cocoa: add missing header from my old branch

This commit is contained in:
Raoul Hecky 2014-06-08 21:34:02 +02:00
parent 98e11cb600
commit 840d36f107
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#import <Cocoa/Cocoa.h>
@interface EcoreCocoaWindow: NSWindow <NSWindowDelegate>
{
void *ecore_window_data;
}
@property (nonatomic, assign) void *ecore_window_data;
- (id) initWithContentRect: (NSRect) contentRect
styleMask: (unsigned int) aStyle
backing: (NSBackingStoreType) bufferingType
defer: (BOOL) flag;
@end