1 /**
2  * \file
3  */
4 
5 #include <windows.h>
6 
7 #include "w32error.h"
8 
9 guint32
mono_w32error_get_last(void)10 mono_w32error_get_last (void)
11 {
12 	return GetLastError ();
13 }
14 
15 void
mono_w32error_set_last(guint32 error)16 mono_w32error_set_last (guint32 error)
17 {
18 	SetLastError (error);
19 }
20 
21 guint32
mono_w32error_unix_to_win32(guint32 error)22 mono_w32error_unix_to_win32 (guint32 error)
23 {
24 	g_assert_not_reached ();
25 }
26