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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public class MENUINFO {
	public int cbSize;
	public int fMask;
	public int dwStyle;
	public int cyMax;
	public int hbrBack;
	public int dwContextHelpID;
	public int dwMenuData;
	public static final int sizeof = 28;
}

Back to the top