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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class LVITEM {
	public int mask;
	public int iItem;
	public int iSubItem;
	public int state;
	public int stateMask;
	public int pszText;
	public int cchTextMax;
	public int iImage;
	public int lParam;
	public int iIndent;
	public static final int sizeof = 40;
}

Back to the top