OSDN Git Service

DTXManiaソリューション、DTXManiaプロジェクト、DTXCreatorプロジェクト、FDKプロジェクトについて英語化。
[dtxmania/dtxmania.git] / FDK17プロジェクト / コード / 01.フレームワーク / Win32 / WindowConstants.cs
diff --git a/FDK17プロジェクト/コード/01.フレームワーク/Win32/WindowConstants.cs b/FDK17プロジェクト/コード/01.フレームワーク/Win32/WindowConstants.cs
deleted file mode 100644 (file)
index 6a07faa..0000000
+++ /dev/null
@@ -1,77 +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
-\r
-namespace SampleFramework\r
-{\r
-    static class WindowConstants\r
-    {\r
-        public const int WM_SIZE = 0x5;\r
-        public const int WM_SYSCOMMAND = 0x112;\r
-        public const int WM_ACTIVATEAPP = 0x001C;\r
-        public const int WM_POWERBROADCAST = 0x0218;\r
-               public const int WM_COPYDATA = 0x004A;\r
-\r
-        public const int SC_SCREENSAVE = 0xF140;\r
-        public const int SC_MONITORPOWER = 0xF170;\r
-\r
-        public const int VK_LWIN = 0x5B;\r
-        public const int VK_RWIN = 0x5C;\r
-\r
-        public static readonly IntPtr SIZE_MINIMIZED = new IntPtr(1);\r
-        public static readonly IntPtr SIZE_MAXIMIZED = new IntPtr(2);\r
-        public static readonly IntPtr SIZE_RESTORED = new IntPtr(0);\r
-\r
-        public static readonly IntPtr PBT_APMQUERYSUSPEND = new IntPtr(0x0000);\r
-        public static readonly IntPtr PBT_APMRESUMESUSPEND = new IntPtr(0x0007);\r
-\r
-        public const int WPF_RESTORETOMAXIMIZED = 2;\r
-\r
-        public const int SW_RESTORE = 9;\r
-        public const int SW_SHOWMINIMIZED = 2;\r
-        public const int SW_MAXIMIZE = 3;\r
-        public const int SW_SHOW = 5;\r
-        public const int SW_MINIMIZE = 6;\r
-\r
-        public const int GWL_STYLE = -16;\r
-        public const int GWL_EXSTYLE = -20;\r
-\r
-        public const long WS_MAXIMIZE = 0x01000000;\r
-        public const long WS_MINIMIZE = 0x20000000;\r
-        public const long WS_POPUP = 0x80000000;\r
-        public const long WS_SYSMENU = 0x00080000;\r
-\r
-        public const long WS_EX_TOPMOST = 0x00000008;\r
-\r
-        public const uint SWP_NOSIZE = 0x0001;\r
-        public const uint SWP_NOMOVE = 0x0002;\r
-        public const uint SWP_NOZORDER = 0x0004;\r
-        public const uint SWP_NOREDRAW = 0x0008;\r
-\r
-        public const uint ES_CONTINUOUS = 0x80000000;\r
-        public const uint ES_DISPLAY_REQUIRED = 0x00000002;\r
-\r
-        public const int MONITOR_DEFAULTTOPRIMARY = 1;\r
-\r
-               public const int WM_USER = 0x400;\r
-       }\r
-}\r