mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[PSDK]
Fix HTMLFormElement uuid and add missing retval in IHTMLDocument6 Add back some previously disabled idl files for msvc svn path=/branches/cmake-bringup/; revision=49702
This commit is contained in:
parent
59a904c185
commit
9053592456
2 changed files with 11 additions and 7 deletions
|
@ -2,6 +2,8 @@
|
|||
LIST(APPEND SOURCE
|
||||
# access.idl
|
||||
activaut.idl
|
||||
activscp.idl
|
||||
asptlb.idl
|
||||
# asynot.idl
|
||||
# asysta.idl
|
||||
bdaiface.idl
|
||||
|
@ -41,6 +43,7 @@ LIST(APPEND SOURCE
|
|||
mscoree.idl
|
||||
msdadc.idl
|
||||
mshtmhst.idl
|
||||
mshtml.idl
|
||||
msinkaut.idl
|
||||
mstask.idl
|
||||
msxml.idl
|
||||
|
@ -72,6 +75,7 @@ LIST(APPEND SOURCE
|
|||
# sesprp.idl
|
||||
shdeprecated.idl
|
||||
shldisp.idl
|
||||
shobjidl.idl
|
||||
shtypes.idl
|
||||
# stdole2.idl
|
||||
strmif.idl
|
||||
|
@ -94,14 +98,10 @@ LIST(APPEND SOURCE
|
|||
|
||||
if(NOT MSVC)
|
||||
LIST(APPEND SOURCE
|
||||
activscp.idl
|
||||
activdbg.idl
|
||||
asptlb.idl
|
||||
ctfutb.idl
|
||||
mlang.idl
|
||||
msctf.idl
|
||||
mshtml.idl
|
||||
shobjidl.idl
|
||||
wincodec.idl
|
||||
wuapi.idl
|
||||
)
|
||||
|
|
|
@ -21,6 +21,10 @@
|
|||
#include <mshtmcid.h>
|
||||
#include <olectl.h>
|
||||
|
||||
#if defined(_MSC_VER) && (__midl >= 501)
|
||||
midl_pragma warning(disable: 2362)
|
||||
#endif
|
||||
|
||||
import "ocidl.idl";
|
||||
import "dimm.idl";
|
||||
import "shtypes.idl";
|
||||
|
@ -6909,7 +6913,7 @@ methods:
|
|||
|
||||
[
|
||||
noncreatable,
|
||||
uuid(3050F24D-98B5-11CF-BB82-00AA00BDCE0B)
|
||||
uuid(3050F251-98B5-11CF-BB82-00AA00BDCE0B)
|
||||
]
|
||||
coclass HTMLFormElement
|
||||
{
|
||||
|
@ -12453,13 +12457,13 @@ interface IHTMLDocument6 : IDispatch
|
|||
HRESULT onstorage([in] VARIANT v);
|
||||
|
||||
[propget, id(DISPID_IHTMLDOCUMENT6_ONSTORAGE), displaybind, bindable]
|
||||
HRESULT onstorage([out] VARIANT *p);
|
||||
HRESULT onstorage([retval, out] VARIANT *p);
|
||||
|
||||
[propput, id(DISPID_IHTMLDOCUMENT6_ONSTORAGECOMMIT), displaybind, bindable]
|
||||
HRESULT onstoragecommit([in] VARIANT v);
|
||||
|
||||
[propget, id(DISPID_IHTMLDOCUMENT6_ONSTORAGECOMMIT), displaybind, bindable]
|
||||
HRESULT onstoragecommit([out] VARIANT *p);
|
||||
HRESULT onstoragecommit([retval, out] VARIANT *p);
|
||||
|
||||
[id(DISPID_IHTMLDOCUMENT6_IE8_GETELEMENTBYID)]
|
||||
HRESULT getElementById(
|
||||
|
|
Loading…
Reference in a new issue