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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
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