comparison 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
comparison
equal deleted inserted replaced
97:2e6eb5bd2c16 98:ecba636b634e
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 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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwt.ole.win32.OleFunctionDescription;
14
15 import dwt.ole.win32.OleParameterDescription;
16
17 public class OleFunctionDescription {
18
19 public int id;
20 public char[] name;
21 public OleParameterDescription[] args;
22 public int optionalArgCount;
23 public short returnType;
24 public int invokeKind;
25 public int funcKind;
26 public short flags;
27 public int callingConvention;
28 public char[] documentation;
29 public char[] helpFile;
30
31 }