blob: 7bd5f7213c00794bc481af0814f8fa6301b2a475 [file] [log] [blame]
package org.eclipse.swt.internal.win32;
/*
* Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
public class WINDOWPLACEMENT {
public int length;
public int flags;
public int showCmd;
// POINT ptMinPosition;
public int ptMinPosition_x;
public int ptMinPosition_y;
// POINT ptMaxPosition;
public int ptMaxPosition_x;
public int ptMaxPosition_y;
// RECT rcNormalPosition;
public int left;
public int top;
public int right;
public int bottom;
public static final int sizeof = 44;
}