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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public final class EXCEPINFO
{
	public short wCode;   
	public short wReserved;
	public int bstrSource; 
	public int bstrDescription; 
	public int bstrHelpFile;
	public int dwHelpContext; 
	public int pvReserved;
	public int pfnDeferredFillIn;
	public int scode;

	public static final int sizeof = 32;
}

Back to the top