Skip to content

Instantly share code, notes, and snippets.

Created December 29, 2012 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4408772 to your computer and use it in GitHub Desktop.
Save anonymous/4408772 to your computer and use it in GitHub Desktop.
CefInitialize failure code example
int InitializeCefApplication(HINSTANCE hInstance,const CefSettings settings)
{
CefMainArgs main_args(hInstance);
CefRefPtr<CefApp> app(new ClientApp);
// Execute the secondary process, if any.
int exit_code = CefExecuteProcess(main_args, app.get());
if (exit_code >= 0)
return exit_code;
// Initialize CEF.
CefInitialize(main_args, settings ,app);
return -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment