diff options
Diffstat (limited to 'src/lib/ecore_cocoa/ecore_cocoa_window.h')
-rw-r--r-- | src/lib/ecore_cocoa/ecore_cocoa_window.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/ecore_cocoa/ecore_cocoa_window.h b/src/lib/ecore_cocoa/ecore_cocoa_window.h new file mode 100644 index 0000000000..6778c70133 --- /dev/null +++ b/src/lib/ecore_cocoa/ecore_cocoa_window.h | |||
@@ -0,0 +1,14 @@ | |||
1 | #import <Cocoa/Cocoa.h> | ||
2 | |||
3 | @interface EcoreCocoaWindow: NSWindow <NSWindowDelegate> | ||
4 | { | ||
5 | void *ecore_window_data; | ||
6 | } | ||
7 | |||
8 | @property (nonatomic, assign) void *ecore_window_data; | ||
9 | |||
10 | - (id) initWithContentRect: (NSRect) contentRect | ||
11 | styleMask: (unsigned int) aStyle | ||
12 | backing: (NSBackingStoreType) bufferingType | ||
13 | defer: (BOOL) flag; | ||
14 | @end | ||