Commit a2f715e5 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Move IOleCommandTarget implementation to separate file.

parent 1c64c20d
......@@ -27,6 +27,7 @@ C_SRCS = \
nsembed.c \
nsio.c \
nsservice.c\
olecmd.c \
oleobj.c \
olewnd.c \
persist.c \
......
......@@ -1047,6 +1047,7 @@ HRESULT HTMLDocument_Create(IUnknown *pUnkOuter, REFIID riid, void** ppvObject)
HTMLDocument_HTMLDocument3_Init(ret);
HTMLDocument_Persist_Init(ret);
HTMLDocument_OleCmd_Init(ret);
HTMLDocument_OleObj_Init(ret);
HTMLDocument_View_Init(ret);
HTMLDocument_Window_Init(ret);
......
......@@ -251,6 +251,7 @@ HRESULT HTMLDocument_Create(IUnknown*,REFIID,void**);
void HTMLDocument_HTMLDocument3_Init(HTMLDocument*);
void HTMLDocument_Persist_Init(HTMLDocument*);
void HTMLDocument_OleCmd_Init(HTMLDocument*);
void HTMLDocument_OleObj_Init(HTMLDocument*);
void HTMLDocument_View_Init(HTMLDocument*);
void HTMLDocument_Window_Init(HTMLDocument*);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment