tauri-windows-webview.h 316 B

12345678910111213141516171819
  1. #define CINTERFACE
  2. #include <windows.h>
  3. #include <commctrl.h>
  4. #include <exdisp.h>
  5. #include <mshtmhst.h>
  6. #include <mshtml.h>
  7. #include <shobjidl.h>
  8. #include <stdio.h>
  9. struct webview_priv {
  10. HWND hwnd;
  11. IOleObject **browser;
  12. BOOL is_fullscreen;
  13. DWORD saved_style;
  14. DWORD saved_ex_style;
  15. RECT saved_rect;
  16. };