Jump to content

PFNSIGHANDLER: Difference between revisions

From EDM2
Anakor (talk | contribs)
New
 
Ak120 (talk | contribs)
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== PFNSIGHANDLER ==
Pointer to a function with pascal calling type.
Pointer to a function with pascal calling type.


=== Type ===
==Type==
 
  [[VOID]]  PASCAL FAR *PFNSIGHANDLER
  [[OS2 API:DataType:VOID|VOID]]  PASCAL FAR *PFNSIGHANDLER


==== C Declaration Method ====
==== C Declaration Method ====
typedef
typedef


=== Comment ===
=== Comment ===
 
This type is included in the ''Control Program Programming Reference'' but it's not included in the toolkit headers! It is mentioned there as:
This type is included in the Control Program Programming Reference but it's not included in the toolkit headers! It is mentioned there as:
 
  typedef CHAR *PFNSIGHANDLER;
  typedef CHAR *PFNSIGHANDLER;


Instead it is included in the DDK as:
Instead it is included in the DDK as:
typedef VOID (PASCAL FAR *PFNSIGHANDLER)(USHORT,USHORT);


typedef VOID (PASCAL FAR *PFNSIGHANDLER)(USHORT,USHORT);
[[Category:Data type]]

Latest revision as of 18:16, 3 April 2017

Pointer to a function with pascal calling type.

Type

VOID  PASCAL FAR *PFNSIGHANDLER

C Declaration Method

typedef

Comment

This type is included in the Control Program Programming Reference but it's not included in the toolkit headers! It is mentioned there as:

typedef CHAR *PFNSIGHANDLER;

Instead it is included in the DDK as:

typedef VOID (PASCAL FAR *PFNSIGHANDLER)(USHORT,USHORT);