summaryrefslogtreecommitdiffstats
path: root/xbmc/platform/posix/ConvUtils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/platform/posix/ConvUtils.cpp')
-rw-r--r--xbmc/platform/posix/ConvUtils.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/xbmc/platform/posix/ConvUtils.cpp b/xbmc/platform/posix/ConvUtils.cpp
new file mode 100644
index 0000000..6ad3da2
--- /dev/null
+++ b/xbmc/platform/posix/ConvUtils.cpp
@@ -0,0 +1,23 @@
+/*
+ * Copyright (C) 2005-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#include <ctype.h>
+#include <errno.h>
+#include <stdio.h>
+
+#include "PlatformDefs.h"
+
+DWORD GetLastError()
+{
+ return errno;
+}
+
+void SetLastError(DWORD dwErrCode)
+{
+ errno = dwErrCode;
+}