mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 19:26:42 +00:00
18 lines
231 B
C
18 lines
231 B
C
#ifndef __WIN32K_ERROR_H
|
|
#define __WIN32K_ERROR_H
|
|
|
|
VOID FASTCALL
|
|
SetLastNtError(
|
|
NTSTATUS Status);
|
|
|
|
VOID FASTCALL
|
|
SetLastWin32Error(
|
|
DWORD Status);
|
|
|
|
NTSTATUS FASTCALL
|
|
GetLastNtError();
|
|
|
|
#endif /* __WIN32K_ERROR_H */
|
|
|
|
/* EOF */
|