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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class COSERVERINFO {
	public int dwReserved1;   
	public int pwszName;    
	public int pAuthInfo;
	public int dwReserved2;

	public static final int sizeof = 16; 
}

Back to the top