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