milsko/include/Mw/LowLevel/ClassicMacOS.h

35 lines
637 B
C
Raw Normal View History

2026-04-15 20:21:20 -07:00
/*!
* @file Mw/LowLevel/ClassicMacOS.h
* @brief ClassicMacOS Backend
* @warning This is used internally
*/
#ifndef __MW_LOWLEVEL_ClassicMacOS_H__
#define __MW_LOWLEVEL_ClassicMacOS_H__
#include <Mw/MachDep.h>
#include <Mw/TypeDefs.h>
#include <Mw/LowLevel.h>
struct _MwLLClassicMacOS {
struct _MwLLCommon common;
2026-04-15 21:41:16 -07:00
2026-04-16 22:58:16 -07:00
MwLL parent;
WindowRef window;
ControlHandle control;
EventRecord event;
Rect winRect;
2026-04-15 20:21:20 -07:00
};
struct _MwLLClassicMacOSColor {
struct _MwLLCommonColor common;
};
struct _MwLLClassicMacOSPixmap {
struct _MwLLCommonPixmap common;
BitMap bmp;
2026-04-15 20:21:20 -07:00
};
MWDECL int MwLLClassicMacOSCallInit(void);
#endif