Dactyloidae Milsko Widget initial commit

This commit is contained in:
wuggy 2026-07-28 23:21:45 +01:00
commit 91b45c0d14
410 changed files with 204246 additions and 0 deletions

View file

@ -0,0 +1,33 @@
/*!
* @file Mw/Font.h
* @brief Font
*/
#ifndef __MW_FONT_H__
#define __MW_FONT_H__
#include <Mw/MachDep.h>
#include <Mw/TypeDefs.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* @brief Loads a TTF Font
* @param data Data
* @param size Data size
* @return Font handle
*/
MWDECL void* MWAPI MwFontLoad(unsigned char* data, unsigned int size);
/*!
* @brief Frees a font handle
* @param handle Handle
*/
MWDECL void MWAPI MwFontFree(void* handle);
#ifdef __cplusplus
}
#endif
#endif