IEBrowser gets the external object. Nothing else.

This commit is contained in:
MusicalProgrammer
2019-11-02 14:51:44 -04:00
parent d8ba0dcfc8
commit 08d8dc4df0
5 changed files with 60 additions and 16 deletions

View File

@@ -1,8 +1,19 @@
#pragma once
#include "oaidl.h"
//DEFINE_GUID(CLSID_G3d, 0xB323F8E0L, 0x2E68, 0x11D0, 0x90, 0xEA, 0x00, 0xAA, 0x00, 0x60, 0xF8, 0x6F);
/*
class IEDispatcher : public IDispatch
{
*/
EXTERN_C const IID IID_IDispatch;
#if defined(__cplusplus) && !defined(CINTERFACE)
MIDL_INTERFACE("B323F8E0-2E68-11D0-90EA-00AA0060F86F")
IEDispatcher : public IDispatch
{
public:
IEDispatcher(void);
~IEDispatcher(void);
@@ -15,3 +26,5 @@ public:
HRESULT STDMETHODCALLTYPE IEDispatcher::Invoke(DISPID, const IID &, LCID, WORD, DISPPARAMS *, VARIANT *, EXCEPINFO *, UINT *);
};
#endif