2025-09-28 06:52:49 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
#ifndef __MILSKO_CORE_H__
|
|
|
|
|
#define __MILSKO_CORE_H__
|
|
|
|
|
|
2025-09-28 07:03:05 +00:00
|
|
|
#include <Milsko/MachDep.h>
|
2025-09-28 08:49:49 +00:00
|
|
|
#include <Milsko/TypeDefs.h>
|
2025-09-28 07:03:05 +00:00
|
|
|
|
|
|
|
|
MILSKODECL HMILSKO MilskoCreateWidget(MilskoClass class, HMILSKO parent, int x, int y, unsigned int width, unsigned int height);
|
|
|
|
|
MILSKODECL void MilskoDestroyWidget(HMILSKO handle);
|
2025-09-28 08:37:21 +00:00
|
|
|
MILSKODECL void MilskoLoop(HMILSKO handle);
|
|
|
|
|
MILSKODECL void MilskoStep(HMILSKO handle);
|
|
|
|
|
MILSKODECL int MilskoPending(HMILSKO handle);
|
2025-09-28 09:04:35 +00:00
|
|
|
|
|
|
|
|
MILSKODECL void MilskoSetInteger(HMILSKO handle, const char* key, int n);
|
2025-09-28 09:08:53 +00:00
|
|
|
MILSKODECL void MilskoSetText(HMILSKO handle, const char* key, const char* value);
|
2025-09-28 09:04:35 +00:00
|
|
|
MILSKODECL void MilskoApply(HMILSKO handle, ...);
|
2025-09-28 06:52:49 +00:00
|
|
|
|
|
|
|
|
#endif
|