Jump to content

FNTHREAD: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
== FNTHREAD ==
== FNTHREAD ==
Address of the code to be executed when the thread begins execution.  
Address of the code to be executed when the thread begins execution.  


=== Type ===  
=== Type ===  
 
  [[VOID]]  APIENTRY FNTHREAD
  [[OS2 API:DataType:VOID|VOID]]  APIENTRY FNTHREAD
   
   
==== C Declaration Method ====
==== C Declaration Method ====
typedef
typedef


=== Comment ===
=== Comment ===
In the header files, the FNTHREAD structure is defined as shown below:
In the header files, the FNTHREAD structure is defined as shown below:
  typedef VOID APIENTRY FNTHREAD (ULONG);
  typedef VOID APIENTRY FNTHREAD (ULONG);
  typedef FNTHREAD *PFNTHREAD;
  typedef FNTHREAD *PFNTHREAD;


[[OS2_API | Back to OS/2 API]]
[[Category:Data type]]
 
 
[[Category:The OS/2 API Project]]

Revision as of 15:50, 3 November 2016

FNTHREAD

Address of the code to be executed when the thread begins execution.

Type

VOID  APIENTRY FNTHREAD

C Declaration Method

typedef

Comment

In the header files, the FNTHREAD structure is defined as shown below:

typedef VOID APIENTRY FNTHREAD (ULONG);
typedef FNTHREAD *PFNTHREAD;