Create header file from COM TLB

.net, c#, c++, com, visual-studio

Solution

I found it (on a whim). The OLE/COM Viewer allows you to save a TLB file as a header, C, or IDL file! Very cool! Thanks!

Problem

Given a managed COM object and an associated tlb file, I would like to access it from some unmanaged C++ code WITHOUT using the TLB/import command. But use a header file. Is there a way to extract a header file from a TLB? Thanks

Original source