summaryrefslogtreecommitdiffstats
path: root/xbmc/platform/posix/XHandlePublic.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/platform/posix/XHandlePublic.h')
-rw-r--r--xbmc/platform/posix/XHandlePublic.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/xbmc/platform/posix/XHandlePublic.h b/xbmc/platform/posix/XHandlePublic.h
new file mode 100644
index 0000000..6d1f840
--- /dev/null
+++ b/xbmc/platform/posix/XHandlePublic.h
@@ -0,0 +1,19 @@
+/*
+ * 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.
+ */
+
+#pragma once
+
+struct CXHandle;
+typedef CXHandle* HANDLE;
+typedef HANDLE* LPHANDLE;
+
+bool CloseHandle(HANDLE hObject);
+
+#define DUPLICATE_CLOSE_SOURCE 0x00000001
+#define DUPLICATE_SAME_ACCESS 0x00000002
+