cocoa: fill a bunch of no-brainer functions, i haven't actually tested this yet and won't until I get home but I assume the worst case scenario is that I fucked up the syntax

This commit is contained in:
IoIxD
2026-01-12 13:04:30 -07:00
parent eb50af2b81
commit ca4adf5f39
3 changed files with 80 additions and 31 deletions

View File

@@ -1,27 +0,0 @@
/*!
* @file Mw/LowLevel/AppKit.h
* @brief Work in progress AppKit Backend
* @warning This is used internally.
*/
#ifndef __MW_LOWLEVEL_APPKIT_H__
#define __MW_LOWLEVEL_APPKIT_H__
#include <Mw/MachDep.h>
#include <Mw/TypeDefs.h>
#include <Mw/LowLevel.h>
MWDECL int MwLLAppKitCallInit(void);
struct _MwLLAppKit {
struct _MwLLCommon common;
};
struct _MwLLAppKitColor {
struct _MwLLCommonColor common;
};
struct _MwLLAppKitPixmap {
struct _MwLLCommonPixmap common;
};
#endif

View File

@@ -23,6 +23,7 @@ struct _MwLLCocoaColor {
struct _MwLLCocoaPixmap {
struct _MwLLCommonPixmap common;
void* real;
};
#endif