Skip to main content
summaryrefslogtreecommitdiffstats
blob: b994609ff5304ea4dd87382e40f7b6a35bb04378 (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 NMLISTVIEW extends NMHDR {
	public int iItem;
	public int iSubItem;
	public int uNewState;
	public int uOldState;
	public int uChanged;
//	public POINT ptAction;
	public int x, y;
	public int lParam;
	public static int sizeof = 44;
}

Back to the top