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

import org.eclipse.swt.internal.ole.win32.COM;
import org.eclipse.swt.internal.ole.win32.IUnknown;

public class IWebURLAuthenticationChallengeSender extends IUnknown {

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

public int cancelAuthenticationChallenge (int /*long*/ challenge) {
	return COM.VtblCall (3, getAddress (), challenge);
}

public int useCredential (int /*long*/ credential, int /*long*/ challenge) {
	return COM.VtblCall (5, getAddress (), credential, challenge);
}

}

Back to the top