[1166] | 1 | cpp_quote("/**")
|
---|
| 2 | cpp_quote(" * This file is part of the mingw-w64 runtime package.")
|
---|
| 3 | cpp_quote(" * No warranty is given; refer to the file DISCLAIMER within this package.")
|
---|
| 4 | cpp_quote(" */")
|
---|
| 5 |
|
---|
| 6 | import "objidl.idl";
|
---|
| 7 | import "mshtml.idl";
|
---|
| 8 |
|
---|
| 9 | cpp_quote("")
|
---|
| 10 | cpp_quote("#include <winapifamily.h>")
|
---|
| 11 | cpp_quote("")
|
---|
| 12 |
|
---|
| 13 | interface IDocObjectService;
|
---|
| 14 |
|
---|
| 15 | cpp_quote("")
|
---|
| 16 | cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)")
|
---|
| 17 |
|
---|
| 18 | [object, uuid (3050f801-98b5-11cf-bb82-00aa00bdce0b)]
|
---|
| 19 | interface 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 |
|
---|
| 32 | cpp_quote("#endif")
|
---|