blob: 6d8dd22b9158be3ad654f0f0c13b9df441be8a8d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.internal.ole.win32;
public class IOleDocument extends IUnknown
{
public IOleDocument(long /*int*/ address) {
super(address);
}
public int CreateView(long /*int*/ pIPSite,long /*int*/ pstm, int dwReserved, long /*int*/[] ppView) {
return COM.VtblCall(3, address, pIPSite, pstm, dwReserved, ppView);
}
}