I previously asked this question: Create COM object using plain C
While doing research about my previous question, the first solution I found was to use generic IDispatch interface and use Invoke to access Internet Explorer objects. Later I discovered that native C interface to Internet Explorer can be found in Windows SDK in exdisp.h header. Using this header was much cleaner solution to my problem.
However, I can't seem to find similiar header files for Microsoft Office applications. I am especially interested in Excel.
Is there a similiar header file that I can access freely? This header should expose Microsoft excel COM interface.