mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-15 10:58:33 +01:00
916d8d08c4
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1535 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
|
|
#include <windows.h>
|
|
|
|
#include "cefsimple/simple_app.h"
|
|
#include "include/cef_sandbox_win.h"
|
|
|
|
// Entry point function for all processes.
|
|
int APIENTRY wWinMain(HINSTANCE hInstance,
|
|
HINSTANCE hPrevInstance,
|
|
LPTSTR lpCmdLine,
|
|
int nCmdShow) {
|
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
|
|
|
// Manage the life span of the sandbox information object. This is necessary
|
|
// for sandbox support on Windows. See cef_sandbox_win.h for complete details.
|
|
CefScopedSandboxInfo scoped_sandbox;
|
|
|
|
// Provide CEF with command-line arguments.
|
|
CefMainArgs main_args(hInstance);
|
|
|
|
// SimpleApp implements application-level callbacks. It will create the first
|
|
// browser instance in OnContextInitialized() after CEF has initialized.
|
|
CefRefPtr<SimpleApp> app(new SimpleApp);
|
|
|
|
// CEF applications have multiple sub-processes (render, plugin, GPU, etc)
|
|
// that share the same executable. This function checks the command-line and,
|
|
// if this is a sub-process, executes the appropriate logic.
|
|
int exit_code = CefExecuteProcess(main_args, app.get(),
|
|
scoped_sandbox.sandbox_info());
|
|
if (exit_code >= 0) {
|
|
// The sub-process has completed so return here.
|
|
return exit_code;
|
|
}
|
|
|
|
// Specify CEF global settings here.
|
|
CefSettings settings;
|
|
|
|
// Initialize CEF.
|
|
CefInitialize(main_args, settings, app.get(), scoped_sandbox.sandbox_info());
|
|
|
|
// Run the CEF message loop. This will block until CefQuitMessageLoop() is
|
|
// called.
|
|
CefRunMessageLoop();
|
|
|
|
// Shut down CEF.
|
|
CefShutdown();
|
|
|
|
return 0;
|
|
}
|