Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9f77689c420ab4c97d7901fa93f9fb68e702b667 (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;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public class HDITEM {
	public int mask;
	public int cxy;
	public int pszText;
	public int hbm;
	public int cchTextMax;
	public int fmt;
	public int lParam; 
	public int iImage;
	public int iOrder;
	public static int sizeof = 36;
}

Back to the top