mirror of
https://github.com/XboxDev/nxdk.git
synced 2026-04-03 05:43:26 +00:00
19 lines
278 B
C
19 lines
278 B
C
// SPDX-License-Identifier: MIT
|
|
|
|
// SPDX-FileCopyrightText: 2019 Stefan Schmidt
|
|
|
|
#include <threads.h>
|
|
#include <winbase.h>
|
|
|
|
static thread_local DWORD lastError = 0;
|
|
|
|
DWORD GetLastError (void)
|
|
{
|
|
return lastError;
|
|
}
|
|
|
|
void SetLastError (DWORD error)
|
|
{
|
|
lastError = error;
|
|
}
|