| 376 | } |
| 377 | |
| 378 | HANDLE NtCreateThread( LPVOID lpRemoteThreadStart, LPVOID lpParam, DWORD createFlags, DWORD* threadId ) |
| 379 | { |
| 380 | return NtCreateThreadEx( NtCurrentProcess( ), lpRemoteThreadStart, lpParam, createFlags, threadId ); |
| 381 | } |
| 382 | |
| 383 | } |
nothing calls this directly
no test coverage detected