All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.swt.internal.ole.win32.FUNCDESC Maven / Gradle / Ivy

Go to download

SWT is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2012 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 ();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy