Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / metadata / w32error-win32.c
1 /**
2  * \file
3  */
4
5 #include <windows.h>
6
7 #include "w32error.h"
8
9 guint32
10 mono_w32error_get_last (void)
11 {
12         return GetLastError ();
13 }
14
15 void
16 mono_w32error_set_last (guint32 error)
17 {
18         SetLastError (error);
19 }
20
21 guint32
22 mono_w32error_unix_to_win32 (guint32 error)
23 {
24         g_assert_not_reached ();
25 }