comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsIAuthPromptCallback.d @ 0:6dd524f61e62

add dwt win and basic java stuff
author Frank Benoit <benoit@tionex.de>
date Mon, 02 Mar 2009 14:44:16 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
1 module org.eclipse.swt.internal.mozilla.nsIAuthPromptCallback;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.internal.mozilla.nsISupports;
6 import org.eclipse.swt.internal.mozilla.nsIAuthInformation;
7
8 const char[] NS_IAUTHPROMPTCALLBACK_IID_STR = "bdc387d7-2d29-4cac-92f1-dd75d786631d";
9
10 const nsIID NS_IAUTHPROMPTCALLBACK_IID=
11 {0xbdc387d7, 0x2d29, 0x4cac,
12 [ 0x92, 0xf1, 0xdd, 0x75, 0xd7, 0x86, 0x63, 0x1d ]};
13
14 interface nsIAuthPromptCallback : nsISupports {
15
16 static const char[] IID_STR = NS_IAUTHPROMPTCALLBACK_IID_STR;
17 static const nsIID IID = NS_IAUTHPROMPTCALLBACK_IID;
18
19 extern(System):
20 nsresult OnAuthAvailable(nsISupports aContext, nsIAuthInformation aAuthInfo);
21 nsresult OnAuthCancelled(nsISupports aContext, PRBool userCancel);
22 }