mirror of
https://github.com/haorendashu/nowser.git
synced 2025-12-17 18:04:18 +01:00
9 lines
256 B
C++
9 lines
256 B
C++
#include <webview_cef/webview_cef_plugin.h>
|
|
#include "my_application.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
initCEFProcesses(argc, argv);
|
|
g_autoptr(MyApplication) app = my_application_new();
|
|
return g_application_run(G_APPLICATION(app), argc, argv);
|
|
}
|