comparison dwt/internal/mozilla/nsIAuthPromptCallback.d @ 298:eec6ddb07873

More xpcom/mozilla port
author John Reimer<terminal.node@gmail.com>
date Sun, 10 Aug 2008 22:25:43 -0700
parents
children 942da4b6558a
comparison
equal deleted inserted replaced
297:2f204a4aebc6 298:eec6ddb07873
1 module dwt.internal.mozilla.nsIAuthPromptCallback;
2
3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6 import dwt.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 extern(System)
15
16 interface nsIAuthPromptCallback : nsISupports {
17
18 static const char[] IID_STR = NS_IAUTHPROMPTCALLBACK_IID_STR;
19 static const nsIID IID = NS_IAUTHPROMPTCALLBACK_IID;
20
21 nsresult OnAuthAvailable(nsISupports aContext, nsIAuthInformation aAuthInfo);
22 nsresult OnAuthCancelled(nsISupports aContext, PRBool userCancel);
23 }