FNTHREAD: Difference between revisions
Appearance
No edit summary |
mNo edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
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: |
Latest revision as of 13:01, 11 June 2019
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;