Merge pull request #4248 from Unity-Technologies/boehm-gc-alloc-fixed
[mono.git] / mono / metadata / w32error-win32.c
1
2 #include <windows.h>
3
4 #include "w32error.h"
5
6 guint32
7 mono_w32error_get_last (void)
8 {
9         return GetLastError ();
10 }
11
12 void
13 mono_w32error_set_last (guint32 error)
14 {
15         SetLastError (error);
16 }
17
18 guint32
19 mono_w32error_unix_to_win32 (guint32 error)
20 {
21         g_assert_not_reached ();
22 }