adding dummy files

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@29 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
Nishi 2025-09-28 21:15:34 +00:00
commit c2b08729ef
6 changed files with 40 additions and 3 deletions

25
include/Milsko/GDI.h Normal file
View file

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

View file

@ -12,9 +12,9 @@
#endif
#if defined(_MILSKO) && defined(_WIN32)
#define MILSKODECL extern __declsped(dllexport)
#define MILSKODECL extern __declspec(dllexport)
#elif defined(_WIN32)
#define MILSKODECL extern __declsped(dllimport)
#define MILSKODECL extern __declspec(dllimport)
#else
#define MILSKODECL extern
#endif