views:

74

answers:

1

Is anyone know how to generate media foundation TypeLibrary which will then be imported as COM in managed code ? I didn't found any dll or tlb file related to media foundation which i can import in my C#.Net application.

A: 

you can use the MIDL compiler to generate a tlb file from the idl files in the windows sdk include directory. after that you can use tlbimp to generate a managed dll for the COM interfaces.

Joachim Kerschbaumer