remove old document

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@499 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-28 20:40:26 +00:00
parent 1a563ff6c8
commit 603997c082
43 changed files with 499 additions and 4580 deletions

View File

@@ -1,7 +1,7 @@
/* $Id$ */
/*!
* %file Mw/Font.h
* %brief Default font
* @file Mw/Font.h
* @brief Default font
*/
#ifndef __MW_FONT_H__
#define __MW_FONT_H__
@@ -14,46 +14,46 @@ extern "C" {
#endif
/*!
* %brief Default font data
* @brief Default font data
*/
MWDECL MwFont MwFontData[];
/*!
* %brief Default bold font data
* @brief Default bold font data
*/
MWDECL MwFont MwBoldFontData[];
/*!
* %brief Default TTF font data
* @brief Default TTF font data
*/
MWDECL unsigned char MwTTFData[];
/*!
* %brief Default TTF font size
* @brief Default TTF font size
*/
MWDECL unsigned int MwTTFDataSize;
/*!
* %brief Default bold TTF font data
* @brief Default bold TTF font data
*/
MWDECL unsigned char MwBoldTTFData[];
/*!
* %brief Default bold TTF font size
* @brief Default bold TTF font size
*/
MWDECL unsigned int MwBoldTTFDataSize;
/*!
* %brief Loads a TTF Font
* %param data Data
* %param size Data size
* %return Font handle
* @brief Loads a TTF Font
* @param data Data
* @param size Data size
* @return Font handle
*/
MWDECL void* MwFontLoad(unsigned char* data, unsigned int size);
/*!
* %brief Frees a font handle
* %param handle Handle
* @brief Frees a font handle
* @param handle Handle
*/
MWDECL void MwFontFree(void* handle);