FNTHREAD: Difference between revisions
Appearance
No edit summary |
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 | |||
[[ | |||
==== 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; | ||
[[Category:Data type]] | |||
[[Category: |
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;