[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / platform / posix / ConvUtils.cpp
blob6ad3da2de57804c5d4c74898944c8886914afb5d
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #include <ctype.h>
10 #include <errno.h>
11 #include <stdio.h>
13 #include "PlatformDefs.h"
15 DWORD GetLastError()
17 return errno;
20 void SetLastError(DWORD dwErrCode)
22 errno = dwErrCode;