tags:

views:

186

answers:

2

I encountered it first time and found no dedicated page on msdn. What does APIENTRY mean?

+3  A: 

It's just a #define for WINAPI, which is the standard decoration for a Windows entrypoint.

#define APIENTRY    WINAPI
Mark Wilkins
+1  A: 

APIENTRY is an alias for WINAPI.

WINAPI itself is a definition for the type of calling convention used for windows API calls, the stdcall.

Basically this is explaining to the compiler how to handle the stack and arguments when calling this function. You don't usually need to worry about it unless you are making function pointers to these types of functions.

SoapBox