Pointer to a procedure.

typedef _NPFN *NPFN;

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

typedef  int    (APIENTRY _NPFN) ();
typedef  _NPFN  *NPFN;


[Back] [Next]