Skip to main content
summaryrefslogtreecommitdiffstats
blob: 46685a07707e7275862e6d9ae9102622f536d76b (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;

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class TCITEM {
	public int mask;
	public int dwState;
	public int dwStateMask;
	public int pszText;
	public int cchTextMax;
	public int iImage;
	public int lParam;
	public static final int sizeof = 28;
}

Back to the top