TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
762 B
18 lines
762 B
<?php
|
|
|
|
/** Native Qt GUI and QProcess bridge. Application logic lives in TypePHP. */
|
|
function qt_tunnel_create(string $title): mixed {}
|
|
function qt_tunnel_is_open(mixed $window): bool {}
|
|
function qt_tunnel_process_events(mixed $window): void {}
|
|
function qt_tunnel_poll_event(mixed $window): array {}
|
|
function qt_tunnel_set_rules(mixed $window, array $rules): void {}
|
|
function qt_tunnel_start_process(
|
|
mixed $window,
|
|
string $id,
|
|
string $program,
|
|
array $arguments
|
|
): bool {}
|
|
function qt_tunnel_stop_process(mixed $window, string $id): void {}
|
|
function qt_tunnel_append_log(mixed $window, string $id, string $message): void {}
|
|
function qt_tunnel_show_error(mixed $window, string $message): void {}
|
|
function qt_tunnel_destroy(mixed $window): void {}
|
|
|