2025-09-28 21:15:34 +00:00
|
|
|
/* $Id$ */
|
2025-09-28 21:55:50 +00:00
|
|
|
#ifndef __MILSKO_GDI_H__
|
|
|
|
|
#define __MILSKO_GDI_H__
|
2025-09-28 21:15:34 +00:00
|
|
|
|
|
|
|
|
#include <Milsko/MachDep.h>
|
2025-09-28 21:55:50 +00:00
|
|
|
|
|
|
|
|
typedef struct _MilskoLL * MilskoLL, MilskoLLRec;
|
|
|
|
|
typedef struct _MilskoLLColor *MilskoLLColor, MilskoLLColorRec;
|
|
|
|
|
|
2025-09-28 21:15:34 +00:00
|
|
|
#include <Milsko/TypeDefs.h>
|
2025-09-28 21:55:50 +00:00
|
|
|
#include <Milsko/LowLevel.h>
|
2025-09-28 21:15:34 +00:00
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
2025-09-28 21:55:50 +00:00
|
|
|
struct _MilskoLL {
|
2025-09-28 21:15:34 +00:00
|
|
|
void* user;
|
|
|
|
|
|
|
|
|
|
void (*draw)(MilskoLL handle);
|
2025-09-28 21:55:50 +00:00
|
|
|
};
|
2025-09-28 21:15:34 +00:00
|
|
|
|
2025-09-28 21:55:50 +00:00
|
|
|
struct _MilskoColor {
|
|
|
|
|
int red;
|
|
|
|
|
int green;
|
|
|
|
|
int blue;
|
|
|
|
|
};
|
2025-09-28 21:15:34 +00:00
|
|
|
|
|
|
|
|
#endif
|