source: Daodan/MSYS2/mingw32/i686-w64-mingw32/include/docobjectservice.idl@ 1194

Last change on this file since 1194 was 1166, checked in by rossy, 3 years ago

Daodan: Replace MinGW build env with an up-to-date MSYS2 env

File size: 1.3 KB
Line 
1cpp_quote("/**")
2cpp_quote(" * This file is part of the mingw-w64 runtime package.")
3cpp_quote(" * No warranty is given; refer to the file DISCLAIMER within this package.")
4cpp_quote(" */")
5
6import "objidl.idl";
7import "mshtml.idl";
8
9cpp_quote("")
10cpp_quote("#include <winapifamily.h>")
11cpp_quote("")
12
13interface IDocObjectService;
14
15cpp_quote("")
16cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)")
17
18[object, uuid (3050f801-98b5-11cf-bb82-00aa00bdce0b)]
19interface IDocObjectService : IUnknown {
20 HRESULT FireBeforeNavigate2 ([in] IDispatch *pDispatch, [in, string] LPCWSTR lpszUrl, [in] DWORD dwFlags, [in, string] LPCWSTR lpszFrameName, [out] BYTE *pPostData, [in] DWORD cbPostData, [in, string] LPCWSTR lpszHeaders, [in] BOOL fPlayNavSound, [out] BOOL *pfCancel);
21 HRESULT FireNavigateComplete2 ([in] IHTMLWindow2 *pHTMLWindow2, [in] DWORD dwFlags);
22 HRESULT FireDownloadBegin ();
23 HRESULT FireDownloadComplete ();
24 HRESULT FireDocumentComplete ([in] IHTMLWindow2 *pHTMLWindow, [in] DWORD dwFlags);
25 HRESULT UpdateDesktopComponent ([in] IHTMLWindow2 *pHTMLWindow);
26 HRESULT GetPendingUrl ([out] BSTR *pbstrPendingUrl);
27 HRESULT ActiveElementChanged ([in] IHTMLElement *pHTMLElement);
28 HRESULT GetUrlSearchComponent ([out] BSTR *pbstrSearch);
29 HRESULT IsErrorUrl ([in, string] LPCWSTR lpszUrl, [out] BOOL *pfIsError);
30};
31
32cpp_quote("#endif")
Note: See TracBrowser for help on using the repository browser.