[SDK] Add some missing headers

This commit is contained in:
Timo Kreuzer 2024-05-26 15:26:23 +03:00
parent 1c5ddc893a
commit dc0433f02a
9 changed files with 258 additions and 0 deletions

View file

@ -0,0 +1,30 @@
/*
* PROJECT: ReactOS SDK
* LICENSE: MIT (https://spdx.org/licenses/MIT)
* PURPOSE: API definitions for api-ms-win-core-processthreads-l1
* COPYRIGHT: Copyright 2024 Timo Kreuzer (timo.kreuzer@reactos.org)
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
WINBASEAPI
BOOL
WINAPI
SetThreadStackGuarantee(
_Inout_ PULONG StackSizeInBytes);
FORCEINLINE
HANDLE
GetCurrentThreadEffectiveToken(
VOID)
{
return (HANDLE)(LONG_PTR)-6;
}
#ifdef __cplusplus
} // extern "C"
#endif