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

/*
 * Licensed Materials - Property of IBM,
 * WebSphere Studio Workbench
 * (c) Copyright IBM Corp 2000
 */
public class IOleWindow extends IUnknown {
/**
 * ProxyIOleWindow constructor comment.
 * @param address int
 */
public IOleWindow(int address) {
	super(address);
}
public int GetWindow(int phwnd[]) {
	return COM.VtblCall(3, address, phwnd);
}
}

Back to the top