Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi there,

can anybody show me an easy programm that uses directshow methods with a CLR/WinForm App? I've already made some successful samples using directshow under Win32/WinForm App.
But when i made the same thing in CLR/WinForm, it has always errors, for example like that:
VB
1>TEST.obj : error LNK2020: Unresolved token (0A000016) IID_IMediaEvent.
1>TEST.obj : error LNK2020: Unresolved token (0A000017) IID_IMediaControl. 
1>TEST.obj : error LNK2020: Unresolved token (0A000019) CLSID_FilterGraph.
1>TEST.obj : error LNK2020: Unresolved token (0A00001A) IID_IGraphBuilder.
1>TEST.obj : error LNK2001: Unresolved extern symbol "IID_IMediaEvent".
1>TEST.obj : error LNK2001: Unresolved extern symbol "IID_IMediaControl".
1>TEST.obj : error LNK2001: Unresolved extern symbol "IID_IGraphBuilder".
1>TEST.obj : error LNK2001: Unresolved extern symbol "CLSID_FilterGraph".
1>c:\dokumente und einstellungen\cmadmin\eigene dateien\visual studio 2010\Projects\TEST\Debug\TEST.exe : fatal error LNK1120: 8 Unresolved extern references.


although i did add strmiids.lib, quartz.lib and ole32.lib before.

Thank you very much!
Posted
Updated 20-Sep-12 20:23pm
v8
Comments
[no name] 19-Sep-12 9:12am    
And for those of us that do not speak German?
christmars 19-Sep-12 9:16am    
sorry! i've already translated it...

1 solution

Have a look at: __uuidof Operator[^] and #pragma managed[^]

As long as you have something that works for Win32 this should help you to get things working with managed code.

Best regards
Espen Harlinn
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900