cmacos: very untested code but it's all so basic that it should work
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
IoIxD 2026-04-16 00:45:59 -07:00
commit 9b138c458e
3 changed files with 59 additions and 12 deletions

View file

@ -125,7 +125,7 @@ union _MwLL {
struct _MwLLCocoa cocoa;
#endif
#ifdef CLASSIC_MAC_OS
struct _MwLLClassicMacOS cmacos;
struct _MwLLClassicMacOS cmacos;
#endif
};
@ -159,6 +159,9 @@ union _MwLLPixmap {
#ifdef USE_COCOA
struct _MwLLCocoaPixmap cocoa;
#endif
#ifdef CLASSIC_MAC_OS
struct _MwLLClassicMacOSPixmap cmacos;
#endif
};
#endif
#include <Mw/TypeDefs.h>

View file

@ -24,6 +24,7 @@ struct _MwLLClassicMacOSColor {
struct _MwLLClassicMacOSPixmap {
struct _MwLLCommonPixmap common;
BitMap bmp;
};
MWDECL int MwLLClassicMacOSCallInit(void);