mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 18:24:09 +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.
|
|
}
|