[ First ] [ Previous ] [ Next ] [ Last ] [ Manuals ]
_beginthreadex

Begins a thread.
Compatibility:
This function is compatible with the following targets:
Prototype:
#include <process.h>
HANDLE __cdecl _beginthreadex(
  LPSECURITY_ATTRIBUTES inSecurity,
  DWORD inStacksize,
  LPTHREAD_START_ROUTINE inCodeAddress,
  LPVOID inParameter,
  DWORD inCreationFlags,
  LPDWORD inThreadID);
Parameters:
Parameters for this function are:
Return:
A HANDLE variable if successful.
Remarks:
The function _beginthreadex is similar to the Windows call CreateThread except this functions properly creates the local data used by MSL.
See Also:
"_endthreadex"
[ First ] [ Previous ] [ Next ] [ Last ] [ Manuals ]
Visit the Metrowerks website at: http://www.metrowerks.com
For assistance contact Metrowerks Technical Support at: cw_support@metrowerks.com
Copyright © 2000, Metrowerks Corp. All rights reserved.
Last updated: August 16, 2000