This is the binary distribution of racket-webview

This commit is contained in:
2026-04-05 14:49:27 +02:00
parent 291bb0c545
commit b0ed617c50
149 changed files with 5047 additions and 28 deletions

20
command.cpp Normal file
View File

@@ -0,0 +1,20 @@
#include "command.h"
Command::Command(int _cmd)
{
cmd = _cmd;
done = false;
js_result_ok = true;
}
Command *CommandEvent::cmd()
{
return _cmd;
}
CommandEvent::CommandEvent(Command *c)
: QEvent(COMMAND_EVENT)
{
_cmd = c;
}