Add CefSetOSModalLoop function (issue #194).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1384 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2013-08-22 17:11:19 +00:00
parent 073a20b973
commit 518888dc55
6 changed files with 58 additions and 0 deletions

View File

@ -100,6 +100,12 @@ CEF_EXPORT void cef_run_message_loop();
///
CEF_EXPORT void cef_quit_message_loop();
///
// Set to true (1) before calling Windows APIs like TrackPopupMenu that enter a
// modal message loop. Set to false (0) after exiting the modal message loop.
///
CEF_EXPORT void cef_set_osmodal_loop(int osModalLoop);
///
// Implement this structure to provide handler implementations. Methods will be
// called by the process and/or thread indicated.