repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Reduce TLS accesses. (#11487)
[mono-project.git]
/
mono
/
metadata
/
w32error-win32.c
blob
a5253c15c74d03aca483a165d1ad773a33c34477
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
}