Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f95abbfcac2a230a3c9def0c8387ab72ae2360a3 (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;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved
 */
public final class DVTARGETDEVICE
{
	public int    tdSize; 
	public short  tdDriverNameOffset; 
	public short  tdDeviceNameOffset;
	public short  tdPortNameOffset;
	public short  tdExtDevmodeOffset;
	public byte   tdData;
	
	public static final int sizeof = 13;
}

Back to the top