Files
milsko/include/Milsko/LowLevel.h
NishiOwO 19eec89b60 a
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@7 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-09-28 04:09:25 +00:00

32 lines
818 B
C

/* $Id$ */
#ifndef __MILSKO_PLATFORM_H__
#define __MILSKO_PLATFORM_H__
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <Milsko/TypeDef.h>
#ifdef _MILSKO
#ifdef USE_X11
#include <Milsko/X11.h>
#endif
#ifdef USE_GDI
#include <Milsko/GDI.h>
#endif
#else
typedef void* HMILSKO;
typedef void* HMILSKOCOLOR;
#endif
HMILSKO MilskoLLCreate(HMILSKO parent, int x, int y, int width, int height);
void MilskoLLDestroy(HMILSKO handle);
void MilskoLLPolygon(HMILSKO handle, MilskoPoint* points, int points_count, HMILSKOCOLOR color);
HMILSKOCOLOR MilskoLLAllocColor(HMILSKO handle, int r, int g, int b);
void MilskoLLGetXYWH(HMILSKO handle, int* x, int* y, unsigned int* w, unsigned int* h);
int MilskoLLPending(HMILSKO handle);
void MilskoLLNextEvent(HMILSKO handle);
#endif