summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/ole/win32/FUNCDESC.java
blob: a9e4ab3d4eed606324bcd50cd4030449a6ef6f4c (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.ole.win32;

public class FUNCDESC {
	/** @field cast=(MEMBERID) */
	public int memid;
	/** @field cast=(SCODE FAR *) */
	public int /*long*/ lprgscode;
	/** @field cast=(ELEMDESC FAR *) */
	public int /*long*/ lprgelemdescParam;
	/** @field cast=(FUNCKIND) */
	public int funckind;
	/** @field cast=(INVOKEKIND) */
	public int invkind;
	/** @field cast=(CALLCONV) */
	public int callconv;
	public short cParams;
	public short cParamsOpt;
	public short oVft;
	public short cScodes;
//	ELEMDESC elemdescFunc;
//	TYPEDESC elemdescFunc.tdesc
	/** @field accessor=elemdescFunc.tdesc.lptdesc,cast=(struct FARSTRUCT tagTYPEDESC FAR* ) */
	public int /*long*/ elemdescFunc_tdesc_union;
	/** @field accessor=elemdescFunc.tdesc.vt */
	public short elemdescFunc_tdesc_vt;
//	PARAMDESC elemdescFunc.paramdesc
	/** @field accessor=elemdescFunc.paramdesc.pparamdescex,cast=(LPPARAMDESCEX) */
	public int /*long*/ elemdescFunc_paramdesc_pparamdescex;
	/** @field accessor=elemdescFunc.paramdesc.wParamFlags */
	public short elemdescFunc_paramdesc_wParamFlags;
	public short wFuncFlags;
	public static final int sizeof = COM.FUNCDESC_sizeof ();
}