mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-15 22:03:29 +00:00
30 lines
510 B
C
30 lines
510 B
C
/*!
|
|
* @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 <Mw/LowLevel.h>
|
|
#include <Mw/MachDep.h>
|
|
#include <Mw/TypeDefs.h>
|
|
|
|
MWDECL int MwLLCocoaCallInit(void);
|
|
|
|
struct _MwLLCocoa {
|
|
struct _MwLLCommon common;
|
|
void* real;
|
|
};
|
|
|
|
struct _MwLLCocoaColor {
|
|
struct _MwLLCommonColor common;
|
|
};
|
|
|
|
struct _MwLLCocoaPixmap {
|
|
struct _MwLLCommonPixmap common;
|
|
void* real;
|
|
};
|
|
|
|
#endif
|