Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 1a6488bb314facccf51eec124e13210bc0284803 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                
                                                       







                                                                                 

                                        
                                            
                                        


                                                           
                                                           


                        
                                                   
                                                        


                      
                                              
 

 
/*******************************************************************************
 * Copyright (c) 2010, 2017 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.webkit;

import org.eclipse.swt.internal.ole.win32.*;
import org.eclipse.swt.internal.win32.*;

public class IWebOpenPanelResultListener extends IUnknown {

public IWebOpenPanelResultListener (long /*int*/ address) {
	super (address);
}

public int chooseFilename (long /*int*/ fileName) {
	return OS.VtblCall (3, getAddress (), fileName);
}

public int cancel () {
	return OS.VtblCall (4, getAddress ());
}

}

Back to the top