9 lines
114 B
C++
9 lines
114 B
C++
|
#include "linux/windows/winbase.h"
|
||
|
|
||
|
#include <errno.h>
|
||
|
|
||
|
DWORD WINAPI GetLastError(void)
|
||
|
{
|
||
|
return errno;
|
||
|
}
|