view dwt/internal/mozilla/nsILoadGroup.d @ 327:b0d7eb5bd76c

Adding Mozilla XPCOM interfaces from dwt-linux to dwt-win
author John Reimer <terminal.node@gmail.com>
date Fri, 02 Jan 2009 17:45:10 -0800
parents
children
line wrap: on
line source

module dwt.internal.mozilla.nsILoadGroup;

import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsISupports;

import dwt.internal.mozilla.nsIRequest;
import dwt.internal.mozilla.nsISimpleEnumerator;
import dwt.internal.mozilla.nsIRequestObserver; 
import dwt.internal.mozilla.nsIInterfaceRequestor;

const char[] NS_ILOADGROUP_IID_STR = "3de0a31c-feaf-400f-9f1e-4ef71f8b20cc";

const nsIID NS_ILOADGROUP_IID= 
  {0x3de0a31c, 0xfeaf, 0x400f, 
    [ 0x9f, 0x1e, 0x4e, 0xf7, 0x1f, 0x8b, 0x20, 0xcc ]};

interface nsILoadGroup : nsIRequest {

  static const char[] IID_STR = NS_ILOADGROUP_IID_STR;
  static const nsIID IID = NS_ILOADGROUP_IID;

extern(System):
  nsresult GetGroupObserver(nsIRequestObserver  *aGroupObserver);
  nsresult SetGroupObserver(nsIRequestObserver  aGroupObserver);
  nsresult GetDefaultLoadRequest(nsIRequest  *aDefaultLoadRequest);
  nsresult SetDefaultLoadRequest(nsIRequest  aDefaultLoadRequest);
  nsresult AddRequest(nsIRequest aRequest, nsISupports aContext);
  nsresult RemoveRequest(nsIRequest aRequest, nsISupports aContext, nsresult aStatus);
  nsresult GetRequests(nsISimpleEnumerator  *aRequests);
  nsresult GetActiveCount(PRUint32 *aActiveCount);
  nsresult GetNotificationCallbacks(nsIInterfaceRequestor  *aNotificationCallbacks);
  nsresult SetNotificationCallbacks(nsIInterfaceRequestor  aNotificationCallbacks);

}