]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/win32/MINMAXINFO.java
1bd8c79ad12ccd38a9d66c815b484d124b20c36e
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / internal / win32 / MINMAXINFO.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2008 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.swt.internal.win32;
15
16 public class MINMAXINFO {
17 //      POINT ptReserved;
18         /** @field accessor=ptReserved.x */
19         public int ptReserved_x;
20         /** @field accessor=ptReserved.y */
21         public int ptReserved_y;
22 //      POINT ptMaxSize;
23         /** @field accessor=ptMaxSize.x */
24         public int ptMaxSize_x;
25         /** @field accessor=ptMaxSize.y */
26         public int ptMaxSize_y;
27 //      POINT ptMaxPosition;
28         /** @field accessor=ptMaxPosition.x */
29         public int ptMaxPosition_x;
30         /** @field accessor=ptMaxPosition.y */
31         public int ptMaxPosition_y;
32 //      POINT ptMinTrackSize;
33         /** @field accessor=ptMinTrackSize.x */
34         public int ptMinTrackSize_x;
35         /** @field accessor=ptMinTrackSize.y */
36         public int ptMinTrackSize_y;
37 //      POINT ptMaxTrackSize;
38         /** @field accessor=ptMaxTrackSize.x */
39         public int ptMaxTrackSize_x;
40         /** @field accessor=ptMaxTrackSize.y */
41         public int ptMaxTrackSize_y;
42         public static final int sizeof = OS.MINMAXINFO_sizeof ();
43 }