Pointer to a procedure.

typedef _PFN *PFN;

In the header file, this is a two-part definition as shown below:

typedef  int   (APIENTRY _PFN) ();
typedef  _PFN  *PFN;


[Back] [Next]