/*! * @file Mw/LowLevel/Cocoa.h * @brief Work in progress Cocoa Backend * @warning This is used internally. */ #ifndef __MW_LOWLEVEL_COCOA_H__ #define __MW_LOWLEVEL_COCOA_H__ #include #include #include MWDECL int MwLLCocoaCallInit(void); struct _MwLLCocoa { struct _MwLLCommon common; void* real; }; struct _MwLLCocoaColor { struct _MwLLCommonColor common; }; struct _MwLLCocoaPixmap { struct _MwLLCommonPixmap common; void* real; }; #endif