seems to work

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@243 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-09 12:45:51 +00:00
parent 814e5ea011
commit 2cecb6c34a
5 changed files with 87 additions and 23 deletions

View File

@@ -203,6 +203,18 @@
<dt>
<a href="#Mw_TypeDefs_h">Mw/TypeDefs.h</a>
</dt>
<dt>
<a href="#Mw_Unicode_h">Mw/Unicode.h</a>
</dt>
<dd>
<a href="#Mw_Unicode_h__MwUTF8ToUTF32">MwUTF8ToUTF32</a>
</dd>
<dd>
<a href="#Mw_Unicode_h__MwUTF8Length">MwUTF8Length</a>
</dd>
<dd>
<a href="#Mw_Unicode_h__MwUTF8Copy">MwUTF8Copy</a>
</dd>
<dt>
<a href="#Mw_Widget_Button_h">Mw/Widget/Button.h</a>
</dt>
@@ -1655,6 +1667,63 @@
</dt>
</dl>
<hr>
<h2 align="center" id="Mw_Unicode_h">Mw/Unicode.h</h2>
<dl>
<dt>
Handles UTF8 stuff.
</dt>
</dl>
<hr>
<pre id="Mw_Unicode_h__MwUTF8ToUTF32">MWDECL <B><FONT COLOR="#228B22">int</FONT></B> <B><FONT COLOR="#0000FF">MwUTF8ToUTF32</FONT></B> (
<B><FONT COLOR="#228B22">const</FONT></B> <B><FONT COLOR="#228B22">char</FONT></B>* input,
<B><FONT COLOR="#228B22">int</FONT></B>* output
);</pre>
<dl>
<dd>
output Output.
</dd>
<dt>
Returns
</dt>
<dd>
Bytes this multibyte takes.
</dd>
</dl>
<hr>
<pre id="Mw_Unicode_h__MwUTF8Length">MWDECL <B><FONT COLOR="#228B22">int</FONT></B> <B><FONT COLOR="#0000FF">MwUTF8Length</FONT></B> (
<B><FONT COLOR="#228B22">const</FONT></B> <B><FONT COLOR="#228B22">char</FONT></B>* input
);</pre>
<dl>
<dd>
input Input.
</dd>
<dt>
Returns
</dt>
<dd>
Length.
</dd>
</dl>
<hr>
<pre id="Mw_Unicode_h__MwUTF8Copy">MWDECL <B><FONT COLOR="#228B22">int</FONT></B> <B><FONT COLOR="#0000FF">MwUTF8Copy</FONT></B> (
<B><FONT COLOR="#228B22">const</FONT></B> <B><FONT COLOR="#228B22">char</FONT></B>* src,
<B><FONT COLOR="#228B22">int</FONT></B> srcskip,
<B><FONT COLOR="#228B22">char</FONT></B>* dst,
<B><FONT COLOR="#228B22">int</FONT></B> dstskip,
<B><FONT COLOR="#228B22">int</FONT></B> len
);</pre>
<dl>
<dd>
len Length.
</dd>
<dt>
Returns
</dt>
<dd>
Copied length in bytes.
</dd>
</dl>
<hr>
<h2 align="center" id="Mw_Widget_Button_h">Mw/Widget/Button.h</h2>
<dl>
<dt>