OSDN Git Service

Merge branch 'feature/37178_プロジェクトとソリューションファイルの英語化' into develop
[dtxmania/dtxmania.git] / FDK17プロジェクト / コード / 01.フレームワーク / Win32 / NativeStructures.cs
diff --git a/FDK17プロジェクト/コード/01.フレームワーク/Win32/NativeStructures.cs b/FDK17プロジェクト/コード/01.フレームワーク/Win32/NativeStructures.cs
deleted file mode 100644 (file)
index f34a90d..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-/*\r
-* Copyright (c) 2007-2009 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
-using System;\r
-using System.Drawing;\r
-using System.Runtime.InteropServices;\r
-\r
-namespace SampleFramework\r
-{\r
-    [StructLayout(LayoutKind.Sequential)]\r
-    struct NativeRectangle\r
-    {\r
-        public int left;\r
-        public int top;\r
-        public int right;\r
-        public int bottom;\r
-    }\r
-\r
-    [StructLayout(LayoutKind.Sequential)]\r
-    struct NativeMessage\r
-    {\r
-        public IntPtr hWnd;\r
-        public uint msg;\r
-        public IntPtr wParam;\r
-        public IntPtr lParam;\r
-        public uint time;\r
-        public Point p;\r
-    }\r
-\r
-    [StructLayout(LayoutKind.Sequential)]\r
-    struct WINDOWPLACEMENT\r
-    {\r
-        public int length;\r
-        public int flags;\r
-        public int showCmd;\r
-        public Point ptMinPosition;\r
-        public Point ptMaxPosition;\r
-        public NativeRectangle rcNormalPosition;\r
-\r
-        public static int Length\r
-        {\r
-            get { return Marshal.SizeOf(typeof(WINDOWPLACEMENT)); }\r
-        }\r
-    }\r
-       #region #28821 2014.1.23 yyagi add: 外部からの文字列メッセージ送受信 定数定義\r
-       [StructLayout( LayoutKind.Sequential )]\r
-       public struct COPYDATASTRUCT\r
-       {\r
-               public IntPtr dwData;\r
-               public UInt32 cbData;\r
-               public IntPtr lpData;\r
-       }\r
-       #endregion\r
-}\r