Hi Carroll,
+ if (ProcessHandle!=0) + localThreadHandle = CreateRemoteThread(ProcessHandle,0,0,StartRoutine,StartContext,0,&ThreadId); + else localThreadHandle = CreateThread(0,0,StartRoutine,StartContext,0,&ThreadId); + + if (localThreadHandle==0) return STATUS_SEVERITY_ERROR;
You should use NtCreateThread rather than CreateThread. It also returns a proper status, so you don't have to guess like you do here. --Juan
Juan Lang wrote:
Hi Carroll,
- if (ProcessHandle!=0)
localThreadHandle =
CreateRemoteThread(ProcessHandle,0,0,StartRoutine,StartContext,0,&ThreadId);
- else localThreadHandle =
CreateThread(0,0,StartRoutine,StartContext,0,&ThreadId);
- if (localThreadHandle==0) return STATUS_SEVERITY_ERROR;
You should use NtCreateThread rather than CreateThread. It also returns a proper status, so you don't have to guess like you do here.
Actually, NtCreateThread is too low-level and so isn't implemented in Wine. RtlCreateUserThread might be better to use though.
Actually, NtCreateThread is too low-level and so isn't implemented in Wine. RtlCreateUserThread might be better to use though.
Whoops :) Thanks, Rob. --Juan