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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public final class CONTROLINFO
{
	public int   cb;
	public int   hAccel;
	public short cAccel;
	public short filler;
	public int   dwFlags;
	
	public static final int sizeof = 16;
}

Back to the top