NPFN: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
== NPFN == | == NPFN == | ||
Pointer to a procedure. | Pointer to a procedure. | ||
=== Type === | === Type === | ||
_NPFN *NPFN | _NPFN *NPFN | ||
==== C Declaration Method ==== | ==== C Declaration Method ==== | ||
typedef | typedef | ||
=== Comment === | === Comment === | ||
In the header file, this is a two-part definition as shown below: | In the header file, this is a two-part definition as shown below: | ||
typedef int (APIENTRY _NPFN) (); | typedef int (APIENTRY _NPFN) (); | ||
typedef _NPFN *NPFN; | typedef _NPFN *NPFN; | ||
[[Category:The OS/2 API Project]] | [[Category:The OS/2 API Project]] |
Revision as of 12:31, 20 April 2016
NPFN
Pointer to a procedure.
Type
_NPFN *NPFN
C Declaration Method
typedef
Comment
In the header file, this is a two-part definition as shown below:
typedef int (APIENTRY _NPFN) (); typedef _NPFN *NPFN;