Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5e9e840ae213b05e13a818c02f8addd0f7a03614 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.swt.internal.win32;

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class COMPOSITIONFORM {
	public int dwStyle;       
//	POINT ptCurrentPos;
	public int x, y;
//	RECT rcArea;  
	public int left, top, right, bottom;
	public static final int sizeof = 28;
}

Back to the top