CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

IID

COM – Creating a COM Component using C++ – DLL component

In this series of articles on creating a COM Component using C++, in the previous article, we implemented a component using C++. The component implemented the IUnknown standard interface and IHello custom interface. Custom interfaces are the interfaces defined by us. Standard interfaces are the interfaces that are defined by the COM component library. We need to […]

COM – Creating a COM Component using C++ – IUnknown interface

COM – An introduction COM (Component Object Model) is a platform-independent, distributed, and object-oriented technology developed by Microsoft to create re-usable software components and enables software components to communicate. COM enables interaction between objects through interfaces. Interfaces are core concepts to build COM components. An interface contains function prototypes only not the function implementations. COM […]

Scroll to top