mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 03:02:28 +03:00
20 lines
316 B
C
20 lines
316 B
C
#define CINTERFACE
|
|
#include <windows.h>
|
|
|
|
#include <commctrl.h>
|
|
#include <exdisp.h>
|
|
#include <mshtmhst.h>
|
|
#include <mshtml.h>
|
|
#include <shobjidl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
struct webview_priv {
|
|
HWND hwnd;
|
|
IOleObject **browser;
|
|
BOOL is_fullscreen;
|
|
DWORD saved_style;
|
|
DWORD saved_ex_style;
|
|
RECT saved_rect;
|
|
};
|