Commit 8a8f3ad9 authored by Damien Fouilleul's avatar Damien Fouilleul

- activex: initialization issues

parent 928454fa
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include "connectioncontainer.h" #include "connectioncontainer.h"
#include "objectsafety.h" #include "objectsafety.h"
#include "vlccontrol.h" #include "vlccontrol.h"
#include "vlccontrol2.h"
#include "viewobject.h" #include "viewobject.h"
#include "dataobject.h" #include "dataobject.h"
...@@ -265,6 +266,7 @@ VLCPlugin::VLCPlugin(VLCPluginClass *p_class, LPUNKNOWN pUnkOuter) : ...@@ -265,6 +266,7 @@ VLCPlugin::VLCPlugin(VLCPluginClass *p_class, LPUNKNOWN pUnkOuter) :
vlcConnectionPointContainer = new VLCConnectionPointContainer(this); vlcConnectionPointContainer = new VLCConnectionPointContainer(this);
vlcObjectSafety = new VLCObjectSafety(this); vlcObjectSafety = new VLCObjectSafety(this);
vlcControl = new VLCControl(this); vlcControl = new VLCControl(this);
vlcControl2 = new VLCControl2(this);
vlcViewObject = new VLCViewObject(this); vlcViewObject = new VLCViewObject(this);
vlcDataObject = new VLCDataObject(this); vlcDataObject = new VLCDataObject(this);
vlcOleObject = new VLCOleObject(this); vlcOleObject = new VLCOleObject(this);
...@@ -284,6 +286,7 @@ VLCPlugin::~VLCPlugin() ...@@ -284,6 +286,7 @@ VLCPlugin::~VLCPlugin()
delete vlcOleObject; delete vlcOleObject;
delete vlcDataObject; delete vlcDataObject;
delete vlcViewObject; delete vlcViewObject;
delete vlcControl2;
delete vlcControl; delete vlcControl;
delete vlcConnectionPointContainer; delete vlcConnectionPointContainer;
delete vlcProvideClassInfo; delete vlcProvideClassInfo;
...@@ -586,9 +589,8 @@ HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc) ...@@ -586,9 +589,8 @@ HRESULT VLCPlugin::getVLC(libvlc_instance_t** pp_libvlc)
RegCloseKey( h_key ); RegCloseKey( h_key );
} }
#if 1 #if 0
//ppsz_argv[0] = "C:\\cygwin\\home\\Damien_Fouilleul\\dev\\videolan\\vlc-trunk\\vlc"; ppsz_argv[0] = "C:\\cygwin\\home\\Damien_Fouilleul\\dev\\videolan\\vlc-trunk\\vlc";
ppsz_argv[0] = "C:\\cygwin\\home\\damienf\\vlc-trunk\\vlc";
#endif #endif
// make sure plugin isn't affected with VLC single instance mode // make sure plugin isn't affected with VLC single instance mode
......
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