KickJava   Java API By Example, From Geeks To Geeks.

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


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 FUNCDESC2 {
15     public int memid;
16     public int lprgscode;
17     public int lprgelemdescParam;
18     public int funckind;
19     public int invkind;
20     public int callconv;
21     public short cParams;
22     public short cParamsOpt;
23     public short oVft;
24     public short cScodes;
25 // ELEMDESC elemdescFunc;
26
// TYPEDESC elemdescFunc.tdesc
27
public int elemdescFunc_tdesc_union;
28     public short elemdescFunc_tdesc_vt;
29 // IDLDESC elemdescFunc.idldesc
30
public int elemdescFunc_idldesc_dwReserved;
31     public short elemdescFunc_idldesc_wIDLFlags;
32     public short wFuncFlags;
33     public static final int sizeof = 50;
34 }
35
Popular Tags