]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/win32/MINMAXINFO.java
Work around SWT 4.13 - 4.18 Win32 DnD bug 567422
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / internal / win32 / MINMAXINFO.java
diff --git a/bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/win32/MINMAXINFO.java b/bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/win32/MINMAXINFO.java
new file mode 100644 (file)
index 0000000..1bd8c79
--- /dev/null
@@ -0,0 +1,43 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2008 IBM Corporation and others.
+ *
+ * This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License 2.0
+ * which accompanies this distribution, and is available at
+ * https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.internal.win32;
+
+public class MINMAXINFO {
+//     POINT ptReserved;
+       /** @field accessor=ptReserved.x */
+       public int ptReserved_x;
+       /** @field accessor=ptReserved.y */
+       public int ptReserved_y;
+//     POINT ptMaxSize;
+       /** @field accessor=ptMaxSize.x */
+       public int ptMaxSize_x;
+       /** @field accessor=ptMaxSize.y */
+       public int ptMaxSize_y;
+//     POINT ptMaxPosition;
+       /** @field accessor=ptMaxPosition.x */
+       public int ptMaxPosition_x;
+       /** @field accessor=ptMaxPosition.y */
+       public int ptMaxPosition_y;
+//     POINT ptMinTrackSize;
+       /** @field accessor=ptMinTrackSize.x */
+       public int ptMinTrackSize_x;
+       /** @field accessor=ptMinTrackSize.y */
+       public int ptMinTrackSize_y;
+//     POINT ptMaxTrackSize;
+       /** @field accessor=ptMaxTrackSize.x */
+       public int ptMaxTrackSize_x;
+       /** @field accessor=ptMaxTrackSize.y */
+       public int ptMaxTrackSize_y;
+       public static final int sizeof = OS.MINMAXINFO_sizeof ();
+}