Let's say I am using any COM function fun(),how I will get all the details of that function as I will not have the cpp file.
How to see COM function return value
Bhabesh Patel
6
Reputation points
I have created a COM project and generated tli file for the same,now i am using api of the project in different machine by importing the tli file.I want to see the return value of all the functions(COM),but in tli file return value is not present and I have only tli file of that project.
Windows development | Windows API - Win32
2 answers
Sort by: Most helpful
-
Xiaopo Yang - MSFT 12,736 Reputation points Microsoft External Staff
2021-07-13T02:21:46.333+00:00 According to The Answer Of The SO Question, You need to split implementation and declaration by using the "no_implementation" and "implementation_only" parameters to #import. These generate .tlh (type library header) and .tli (type library implementation) files.
Which is from Internet.