mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2025-01-07 07:40:40 +03:00
9 lines
249 B
Plaintext
9 lines
249 B
Plaintext
#include "include/cef_app.h"
|
|
#include "atom_cef_app.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
CefMainArgs main_args(argc, argv);
|
|
CefRefPtr<CefApp> app(new AtomCefApp);
|
|
return CefExecuteProcess(main_args, app); // Execute the secondary process.
|
|
}
|