KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > ole > win32 > VARDESC2


1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.swt.internal.ole.win32;
12
13
14 public class VARDESC2 {
15     public int memid;
16     public int lpstrSchema;
17     public int unionField;
18 // ELEMDESC elemdescVar
19
// TYPEDESC elemdescVar.tdesc
20
public int elemdescVar_tdesc_union;
21     public short elemdescVar_tdesc_vt;
22 // IDLDESC elemdescFunc.idldesc
23
public int elemdescFunc_idldesc_dwReserved;
24     public short elemdescFunc_idldesc_wIDLFlags;
25     public short wVarFlags;
26     public int varkind;
27     public static final int sizeof = 36;
28 }
29
Popular Tags