Skip to main content
summaryrefslogtreecommitdiffstats
blob: e07b151c78b371bb11896e0d100677855feaf8d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.eclipse.swt.ole.win32;

/*
 * Licensed Materials - Property of IBM,
 * (c) Copyright IBM Corp. 1998, 2000  All Rights Reserved
 */

public class OlePropertyDescription {
	public int id;
	public String name;
	public int type;
	public int flags;
	public int kind;
	public String description;
	public String helpFile;
}

Back to the top