view dwt/ole/win32/OleFunctionDescription.d @ 98:ecba636b634e

package dwt/ole
author Frank Benoit <benoit@tionex.de>
date Sat, 09 Feb 2008 03:36:27 +0100
parents
children ab60f3309436
line wrap: on
line source

/*******************************************************************************
 * Copyright (c) 2000, 2003 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
 * Port to the D programming language:
 *     Frank Benoit <benoit@tionex.de>
 *******************************************************************************/
module dwt.ole.win32.OleFunctionDescription;

import dwt.ole.win32.OleParameterDescription;

public class OleFunctionDescription {

    public int id;
    public char[] name;
    public OleParameterDescription[] args;
    public int optionalArgCount;
    public short returnType;
    public int invokeKind;
    public int funcKind;
    public short flags;
    public int callingConvention;
    public char[] documentation;
    public char[] helpFile;

}