Jump to content

DosCreateThread: Difference between revisions

From EDM2
Prototype of DosCreateThread
 
m Added links
Line 5: Line 5:
   
   
  APIRET DosCreateThread( PTID ptid, PFNTHREAD start_function, ULONG parameter, ULONG flags, ULONG stack_size );
  APIRET DosCreateThread( PTID ptid, PFNTHREAD start_function, ULONG parameter, ULONG flags, ULONG stack_size );
----
== See Also ==
* [[UsingThreads#Creating Threads | UsingThreads: Creating Threads]]
----
[[OS2 API:CPI | Back to Control Programming]]

Revision as of 10:29, 5 November 2007

Prototype:

#define INCL_DOSPROCESS
#include <os2.h>

APIRET DosCreateThread( PTID ptid, PFNTHREAD start_function, ULONG parameter, ULONG flags, ULONG stack_size );

See Also


Back to Control Programming