aboutsummaryrefslogtreecommitdiff
path: root/contrib/llvm/lib/Support/Windows/COM.inc
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/llvm/lib/Support/Windows/COM.inc')
-rw-r--r--contrib/llvm/lib/Support/Windows/COM.inc36
1 files changed, 0 insertions, 36 deletions
diff --git a/contrib/llvm/lib/Support/Windows/COM.inc b/contrib/llvm/lib/Support/Windows/COM.inc
deleted file mode 100644
index 002182bc3939..000000000000
--- a/contrib/llvm/lib/Support/Windows/COM.inc
+++ /dev/null
@@ -1,36 +0,0 @@
-//==- llvm/Support/Windows/COM.inc - Windows COM Implementation -*- C++ -*-===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements the Windows portion of COM support.
-//
-//===----------------------------------------------------------------------===//
-
-//===----------------------------------------------------------------------===//
-//=== WARNING: Implementation here must contain only Windows code.
-//===----------------------------------------------------------------------===//
-
-#include <objbase.h>
-
-namespace llvm {
-namespace sys {
-
-InitializeCOMRAII::InitializeCOMRAII(COMThreadingMode Threading,
- bool SpeedOverMemory) {
- DWORD Coinit = 0;
- if (Threading == COMThreadingMode::SingleThreaded)
- Coinit |= COINIT_APARTMENTTHREADED;
- else
- Coinit |= COINIT_MULTITHREADED;
- if (SpeedOverMemory)
- Coinit |= COINIT_SPEED_OVER_MEMORY;
- ::CoInitializeEx(nullptr, Coinit);
-}
-
-InitializeCOMRAII::~InitializeCOMRAII() { ::CoUninitialize(); }
-}
-}