repo.or.cz
/
xbmc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[videodb] remove unused seasons table from episode_view
[xbmc.git]
/
xbmc
/
platform
/
posix
/
ConvUtils.cpp
blob
6ad3da2de57804c5d4c74898944c8886914afb5d
1
/*
2
* Copyright (C) 2005-2018 Team Kodi
3
* This file is part of Kodi - https://kodi.tv
4
*
5
* SPDX-License-Identifier: GPL-2.0-or-later
6
* See LICENSES/README.md for more information.
7
*/
8
9
#include <ctype.h>
10
#include <errno.h>
11
#include <stdio.h>
12
13
#include
"PlatformDefs.h"
14
15
DWORD
GetLastError
()
16
{
17
return
errno
;
18
}
19
20
void
SetLastError
(
DWORD dwErrCode
)
21
{
22
errno
=
dwErrCode
;
23
}