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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public final class DISPPARAMS
{
	public int rgvarg;
	public int rgdispidNamedArgs;
	public int cArgs;
	public int cNamedArgs;
	
	public static final int sizeof = 16; 
									
}

Back to the top