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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class TOOLINFO {
	public int cbSize; 
	public int uFlags;
	public int hwnd; 
	public int uId; 
//	public RECT rect;
	public int left, top, right, bottom;
	public int hinst; 
	public int lpszText;
	public int lParam;
	public static int sizeof = 44;
}

Back to the top