opt: adapt --cm

Signed-off-by: Kingtous <kingtous@qq.com>

[linux] opt: add librustdesk.so filter
This commit is contained in:
Kingtous 2022-05-30 15:33:30 +08:00
parent 5e2be73466
commit 7af663809f

View File

@ -1,6 +1,28 @@
#include <dlfcn.h>
#include "my_application.h" #include "my_application.h"
#define RUSTDESK_LIB_PATH "/usr/lib/rustdesk/librustdesk.so"
typedef bool (*RustDeskCoreMain)();
bool flutter_rustdesk_core_main() {
void* librustdesk = dlopen(RUSTDESK_LIB_PATH, RTLD_LAZY);
if (!librustdesk) {
fprintf(stderr,"load librustdesk.so failed\n");
return true;
}
auto core_main = (RustDeskCoreMain) dlsym(librustdesk,"rustdesk_core_main");
char* error;
if ((error = dlerror()) != nullptr) {
fprintf(stderr, "error finding rustdesk_core_main: %s", error);
return true;
}
return core_main();
}
int main(int argc, char** argv) { int main(int argc, char** argv) {
if (!flutter_rustdesk_core_main()) {
return 0;
}
g_autoptr(MyApplication) app = my_application_new(); g_autoptr(MyApplication) app = my_application_new();
return g_application_run(G_APPLICATION(app), argc, argv); return g_application_run(G_APPLICATION(app), argc, argv);
} }