comparison win/dw.c @ 2017:686b2d049056

Win: Attempt to add event handler to capture DocumentComplete with embedded IE. This code doesm't work yet, but I needed to commit it to switch computers.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 08 Nov 2019 07:20:17 +0000
parents c30f4354966e
children 663d79f28e46
comparison
equal deleted inserted replaced
2016:f696215e6d4e 2017:686b2d049056
5712 5712
5713 #if (defined(BUILD_DLL) || defined(BUILD_HTML)) 5713 #if (defined(BUILD_DLL) || defined(BUILD_HTML))
5714 void _dw_html_action(HWND hwnd, int action); 5714 void _dw_html_action(HWND hwnd, int action);
5715 int _dw_html_raw(HWND hwnd, char *string); 5715 int _dw_html_raw(HWND hwnd, char *string);
5716 int _dw_html_url(HWND hwnd, char *url); 5716 int _dw_html_url(HWND hwnd, char *url);
5717 int _dw_html_javascript_run(HWND hwnd, char *script, void *scriptdata);
5717 #ifdef BUILD_EDGE 5718 #ifdef BUILD_EDGE
5718 void _dw_edge_action(HWND hwnd, int action); 5719 void _dw_edge_action(HWND hwnd, int action);
5719 int _dw_edge_raw(HWND hwnd, LPCWSTR string); 5720 int _dw_edge_raw(HWND hwnd, LPCWSTR string);
5720 int _dw_edge_url(HWND hwnd, LPCWSTR url); 5721 int _dw_edge_url(HWND hwnd, LPCWSTR url);
5722 int _dw_edge_javascript_run(HWND hwnd, LPCWSTR script, void *scriptdata);
5721 #endif 5723 #endif
5722 #endif 5724 #endif
5723 5725
5724 /* 5726 /*
5725 * Causes the embedded HTML widget to take action. 5727 * Causes the embedded HTML widget to take action.