LPTHREAD_START_ROUTINE Function Pointer

Points to a function that notifies the host that a thread has started to execute.

This function pointer has been deprecated in the .NET Framework version 4.

typedef DWORD (__stdcall *LPTHREAD_START_ROUTINE) (
    [in] LPVOID lpThreadParameter
);

Parameters

  • lpThreadParameter
    [in] A pointer to the code that has started executing.

Remarks

The function to which LPTHREAD_START_ROUTINE points is a callback function and must be implemented by the writer of the hosting application.

Requirements

Platforms: See .NET Framework System Requirements.

Header: MSCorEE.h

Library: MSCorWks.dll

.NET Framework Versions: 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0

See Also

Other Resources

.NET Framework 1.1 and 2.0 Hosting Global Static Functions