comparison dwt/ole/win32/OleParameterDescription.d @ 212:ab60f3309436

reverted the char[] to String and use the an alias.
author Frank Benoit <benoit@tionex.de>
date Mon, 05 May 2008 00:12:38 +0200
parents ecba636b634e
children
comparison
equal deleted inserted replaced
211:ff59aeb96cac 212:ab60f3309436
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 * Port to the D programming language: 10 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de> 11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/ 12 *******************************************************************************/
13 module dwt.ole.win32.OleParameterDescription; 13 module dwt.ole.win32.OleParameterDescription;
14 import dwt.dwthelper.utils;
14 15
15 16
16 public class OleParameterDescription { 17 public class OleParameterDescription {
17 public char[] name; 18 public String name;
18 public short flags; 19 public short flags;
19 public short type; 20 public short type;
20 } 21 }