view 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
line wrap: on
line source

module org.eclipse.swt.internal.mozilla.nsIAuthPromptCallback;

import org.eclipse.swt.internal.mozilla.Common;
import org.eclipse.swt.internal.mozilla.nsID;
import org.eclipse.swt.internal.mozilla.nsISupports;
import org.eclipse.swt.internal.mozilla.nsIAuthInformation;

const char[] NS_IAUTHPROMPTCALLBACK_IID_STR = "bdc387d7-2d29-4cac-92f1-dd75d786631d";

const nsIID NS_IAUTHPROMPTCALLBACK_IID= 
  {0xbdc387d7, 0x2d29, 0x4cac, 
    [ 0x92, 0xf1, 0xdd, 0x75, 0xd7, 0x86, 0x63, 0x1d ]};

interface nsIAuthPromptCallback : nsISupports {

  static const char[] IID_STR = NS_IAUTHPROMPTCALLBACK_IID_STR;
  static const nsIID IID = NS_IAUTHPROMPTCALLBACK_IID;

extern(System):
  nsresult OnAuthAvailable(nsISupports aContext, nsIAuthInformation aAuthInfo);
  nsresult OnAuthCancelled(nsISupports aContext, PRBool userCancel);
}