Hi,
I'm currently trying to put VLC ActiveX in my ATL/C++ project, and I have problems reading a file.
I managed to declare and use the ActiveX (I have the logo of VLC filling the ActiveX space) but when I try to actually read a file and call the AddTarget method, it crashes.
I do:
m_VLC->addTarget("c:\\Loading.avi",NULL,VLC::VLCPlayListInsert,0);
but in AddTarget code, the raw_addTarget methods returns E_INVALIDARG.
I think it may come from my NULL options but I thought that putting NULL would avoid having problems...
I'd be glad if anyone could help me