comparison win/edge.cpp @ 2088:94ea915bd917

Win: Initial implementation of notifications on Windows. Currently using WinToast. Update readme regarding WinToast support and in-source comments regarding the API. Fix missing "API" calling conventions on OS/2 and Windows.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 05 Jun 2020 16:27:00 +0000
parents 43453c9a404c
children 9a5dbda8f2ab
comparison
equal deleted inserted replaced
2087:082d743f3214 2088:94ea915bd917
3 * Allows dw_html_new() to embed a Microsoft Edge (Chromium) browser. 3 * Allows dw_html_new() to embed a Microsoft Edge (Chromium) browser.
4 * 4 *
5 * Requires Windows 10, 8 or 7 with Microsoft Edge (Chromium) installed. 5 * Requires Windows 10, 8 or 7 with Microsoft Edge (Chromium) installed.
6 * 6 *
7 * Only included when BUILD_EDGE is defined, will fall back to embedded IE. 7 * Only included when BUILD_EDGE is defined, will fall back to embedded IE.
8 *
9 * Currently only buildable with Visual Studio since it requires the EDGE
10 * SDK which is currently distributed as a nuget package.
11 */ 8 */
12 #include "dw.h" 9 #include "dw.h"
13 #include "webview2.h" 10 #include "webview2.h"
14 #include <wrl.h> 11 #include <wrl.h>
15 12