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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class HELPINFO {
	public int cbSize;
	public int iContextType;
	public int iCtrlId;
	public int hItemHandle;
	public int dwContextId;
//	POINT MousePos
	public int x;
	public int y;
	public static final int sizeof = 28;
}

Back to the top