| 294 | |
| 295 | _IRQL_requires_max_(PASSIVE_LEVEL) |
| 296 | NTSTATUS SetInformationThread( |
| 297 | HANDLE hThread, |
| 298 | THREADINFOCLASS ThreadInformationClass, |
| 299 | IN PVOID ThreadInformation, |
| 300 | ULONG ThreadInformationLength |
| 301 | ) { |
| 302 | return ZwSetInformationThread( |
| 303 | hThread, |
| 304 | ThreadInformationClass, |
| 305 | ThreadInformation, |
| 306 | ThreadInformationLength |
| 307 | ); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | namespace Information { |
no outgoing calls
no test coverage detected