devxlogo

Use of void** in QueryInterface (COM)

Question:
When using Queryinterface in COM, why is the interface pointer cast to void** andwhy is it passed as a pointer to a pointer (double indirection)?

Answer:
This is because the function that accepts the void** pointer changes its value.

In general, when you call a function that changes the value of an int, you pass an int * to that function. However, when the argument to be changed is itself a pointer, you need to pass that pointer’s address. In other words, you pass a pointer to a pointer. This exactly what void** is.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.