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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
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