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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public class CREATESTRUCT {
	public int lpCreateParams; 
	public int hInstance; 
	public int hMenu; 
	public int hwndParent; 
	public int cy; 
	public int cx; 
	public int y; 
	public int x; 
	public int style; 
	public int lpszName; 
	public int lpszClass; 
	public int dwExStyle;
	public static final int sizeof = 48;
}

Back to the top