add reload

This commit is contained in:
Nishi 2025-12-28 17:29:00 +09:00
commit ef89c2dac9
Signed by: nishi
GPG key ID: 27EF69B208EB9343
11 changed files with 283 additions and 121 deletions

View file

@ -1,9 +1,9 @@
#include <Mw/Milsko.h>
#include <xemil.h>
void module(MwWidget box, xl_node_t* node) {
MwVaCreateWidget(MwSeparatorClass, "separator", box, 0, 0, 0, 0,
MwNfixedSize, 10,
MwNorientation, MwVERTICAL,
NULL);
MwWidget module(MwWidget box, xl_node_t* node) {
return MwVaCreateWidget(MwSeparatorClass, "separator", box, 0, 0, 0, 0,
MwNfixedSize, 10,
MwNorientation, MwVERTICAL,
NULL);
}