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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
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