bad solution

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@30 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-09-28 21:55:50 +00:00
parent c2b08729ef
commit 61b442d259
7 changed files with 92 additions and 63 deletions

View File

@@ -1,25 +1,27 @@
/* $Id$ */
#ifndef __MILSKO_X11_H__
#define __MILSKO_X11_H__
typedef struct _MilskoLowLevel* MilskoLL;
typedef struct _MilskoColor* MilskoLLColor;
#ifndef __MILSKO_GDI_H__
#define __MILSKO_GDI_H__
#include <Milsko/MachDep.h>
typedef struct _MilskoLL * MilskoLL, MilskoLLRec;
typedef struct _MilskoLLColor *MilskoLLColor, MilskoLLColorRec;
#include <Milsko/TypeDefs.h>
#include <Milsko/LowLevel.h>
#include <windows.h>
typedef struct _MilskoLowLevel {
struct _MilskoLL {
void* user;
void (*draw)(MilskoLL handle);
}* MilskoLL;
};
typedef struct _MilskoColor {
int red;
int green;
int blue;
}* MilskoLLColor;
struct _MilskoColor {
int red;
int green;
int blue;
};
#endif