KickJava   Java API By Example, From Geeks To Geeks.

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


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

11 package org.eclipse.swt.internal.ole.win32;
12
13 public class FUNCDESC {
14     public int memid;
15     public int /*long*/ lprgscode;
16     public int /*long*/ lprgelemdescParam;
17     public int funckind;
18     public int invkind;
19     public int callconv;
20     public short cParams;
21     public short cParamsOpt;
22     public short oVft;
23     public short cScodes;
24 // ELEMDESC elemdescFunc;
25
// TYPEDESC elemdescFunc.tdesc
26
public int /*long*/ elemdescFunc_tdesc_union;
27     public short elemdescFunc_tdesc_vt;
28 // PARAMDESC elemdescFunc.paramdesc
29
public int /*long*/ elemdescFunc_paramdesc_pparamdescex;
30     public short elemdescFunc_paramdesc_wParamFlags;
31     public short wFuncFlags;
32     public static final int sizeof = COM.FUNCDESC_sizeof ();
33 }
34
Popular Tags