This commit is contained in:
Nishi 2026-04-20 04:21:34 +09:00
commit 6eee227693
Signed by: nishi
GPG key ID: 27EF69B208EB9343
2 changed files with 9 additions and 0 deletions

View file

@ -756,6 +756,13 @@
<arguments>
<pointer name="menu" />
<struct defname="MwPoint" pointer="yes" name="point" />
<integer name="diff_calc" />
</arguments>
</function>
<function name="GetSize">
<arguments>
<pointer name="menu" />
<struct defname="MwRect" pointer="yes" name="rect" />
</arguments>
</function>
</functions>

View file

@ -8,6 +8,8 @@ static int wcreate(MwWidget handle) {
MwSetDefault(handle);
MwSetInteger(handle, MwNleftPadding, 0);
handle->internal = NULL;
return 0;
}