OSDN Git Service

Merge branch 'feature/#36529_SlimDXからSharpDXへの移行' into develop
[dtxmania/dtxmania.git] / SlimDXc_Jun2010(VC++2008) / source / dxgi / KeyedMutex.h
diff --git a/SlimDXc_Jun2010(VC++2008)/source/dxgi/KeyedMutex.h b/SlimDXc_Jun2010(VC++2008)/source/dxgi/KeyedMutex.h
deleted file mode 100644 (file)
index 6aa9430..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-/*\r
-* Copyright (c) 2007-2010 SlimDX Group\r
-* \r
-* Permission is hereby granted, free of charge, to any person obtaining a copy\r
-* of this software and associated documentation files (the "Software"), to deal\r
-* in the Software without restriction, including without limitation the rights\r
-* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
-* copies of the Software, and to permit persons to whom the Software is\r
-* furnished to do so, subject to the following conditions:\r
-* \r
-* The above copyright notice and this permission notice shall be included in\r
-* all copies or substantial portions of the Software.\r
-* \r
-* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
-* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
-* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
-* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
-* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
-* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
-* THE SOFTWARE.\r
-*/\r
-#pragma once\r
-\r
-#include "DeviceChildDxgi.h"\r
-\r
-namespace SlimDX\r
-{\r
-       namespace DXGI\r
-       {\r
-               /// <summary>\r
-               /// Represents a keyed mutex, which allows exclusive access to a shared resource that is used by multiple devices.\r
-               /// </summary>\r
-               /// <unmanaged>IDXGIKeyedMutex</unmanaged>\r
-               public ref class KeyedMutex : public DeviceChild\r
-               {\r
-                       COMOBJECT(IDXGIKeyedMutex, KeyedMutex);\r
-\r
-               public:\r
-                       /// <summary>\r
-                       /// Initializes a new instance of the <see cref="KeyedMutex"/> class.\r
-                       /// </summary>\r
-                       /// <param name="resource">The COM object implementing the IDXGIKeyedMutex interface.</param>\r
-                       KeyedMutex( IComObject^ resource );\r
-\r
-                       /// <summary>\r
-                       /// Using a key, acquires exclusive rendering access to a shared resource.\r
-                       /// </summary>\r
-                       /// <param name="key">A value that indicates which device to give access to. This method will succeed when the device that currently owns the surface\r
-                       /// calls the KeyedMutex.Release method using the same value. This key can be any arbitrary value.</param>\r
-                       /// <param name="milliseconds">The time-out interval, in milliseconds. This method will return if the interval elapses, and the keyed mutex\r
-                       /// has not been released using the specified key. If this value is set to zero, the Acquire method will test to see if the keyed mutex has been\r
-                       /// released and returns immediately. If this value is set to the maximum integral value, the time-out interval will never elapse.</param>\r
-                       /// <returns>A <see cref="SlimDX::Result"/> object describing the result of the operation.</returns>\r
-                       Result Acquire(System::Int64 key, int milliseconds);\r
-\r
-                       /// <summary>\r
-                       /// Using a key, releases exclusive rendering access to a shared resource.\r
-                       /// </summary>\r
-                       /// <param name="key">A value that indicates which device to give access to. This method will succeed when the device that currently owns the surface\r
-                       /// calls the KeyedMutex.ReleaseSync method using the same value. This key can be any arbitrary value.</param>\r
-                       /// <returns>A <see cref="SlimDX::Result"/> object describing the result of the operation.</returns>\r
-                       Result Release(System::Int64 key);\r
-               };\r
-       }\r
-}\r