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

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public final class LICINFO
{
	public int cbLicInfo;
	public int fRuntimeKeyAvail;
	public int fLicVerified;
	
	public static final int sizeof = 12;
}

Back to the top