Getting version number of IUnknown interface?
-
Here's an example: I get the CLSID of the program using CLSIDFromString, how do I get the version number? Jonathan de Halleux, Belgium.
-
Here's an example: I get the CLSID of the program using CLSIDFromString, how do I get the version number? Jonathan de Halleux, Belgium.
First of all, interfaces don't have version numbers, they are supposed to be immutable. You can get the version of the executable that implements the interface by using the
GetFileVersionInfo
and related APIs.
Look! They have the Internet on computers now! (Homer J. Simpson)
-
First of all, interfaces don't have version numbers, they are supposed to be immutable. You can get the version of the executable that implements the interface by using the
GetFileVersionInfo
and related APIs.
Look! They have the Internet on computers now! (Homer J. Simpson)
Thks Jonathan de Halleux, Belgium.