Skip to main content
summaryrefslogtreecommitdiffstats
blob: 9d33d3f54a1ab12fc0ec08a7813d683564cfef91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.eclipse.swt.internal.ole.win32;

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2000  All Rights Reserved
 */

public class VARDESC1 {
	public int memid;
	public int lpstrSchema;
	public int unionField;
	//ELEMDESC elemdescVar
	//TYPEDESC elemdescVar.tdesc
	public int elemdescVar_tdesc_union;
	public short elemdescVar_tdesc_vt;
	public short elemdescVar_tdesc_filler;
	//PARAMDESC elemdescFunc.paramdesc
	public int elemdescVar_paramdesc_pparamdescex;
	public short elemdescVar_paramdesc_wParamFlags;
	public short elemdescVar_paramdesc_filler;
	public short wVarFlags;
	public short filler;
	public int varkind;
	
	public static final int sizeof = 36;
}

Back to the top