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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class LVHITTESTINFO {
//	POINT pt;
	public int x;
	public int y;
	public int flags;
	public int iItem;
	public int iSubItem;
	public static int sizeof = 20;
}

Back to the top