Jump to content

PFN: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
No edit summary
Line 1: Line 1:
== PFN ==
== PFN ==
Pointer to a procedure.  
Pointer to a procedure.  


=== Type ===
=== Type ===
_PFN  *PFN


_PFN  *PFN
==== 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 _PFN) ();
  typedef  int    (APIENTRY _PFN) ();
  typedef  _PFN  *PFN;
  typedef  _PFN  *PFN;
[[OS2_API | Back to OS/2 API]]


[[Category:The OS/2 API Project]]
[[Category:The OS/2 API Project]]

Revision as of 02:18, 12 July 2016

PFN

Pointer to a procedure.

Type

_PFN  *PFN

C Declaration Method

typedef

Comment

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

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