view dwt/internal/mozilla/nsIDownload.d @ 341:942da4b6558a

Ongoing fixup for compile
author John Reimer <terminal.node@gmail.com>
date Sun, 26 Oct 2008 21:19:51 -0700
parents eec6ddb07873
children 8198e6052012
line wrap: on
line source

module dwt.internal.mozilla.nsIDownload;

import dwt.internal.mozilla.Common;
import dwt.internal.mozilla.nsID;
import dwt.internal.mozilla.nsITransfer;
import dwt.internal.mozilla.nsIWebProgressListener;
import dwt.internal.mozilla.nsIURI; 
import dwt.internal.mozilla.nsILocalFile;
import dwt.internal.mozilla.nsIObserver; 
import dwt.internal.mozilla.nsICancelable;
import dwt.internal.mozilla.nsIMIMEInfo; 

const char[] NS_IDOWNLOAD_IID_STR = "9e1fd9f2-9727-4926-85cd-f16c375bba6d";

const nsIID NS_IDOWNLOAD_IID= 
  {0x9e1fd9f2, 0x9727, 0x4926, 
    [ 0x85, 0xcd, 0xf1, 0x6c, 0x37, 0x5b, 0xba, 0x6d ]};

//extern(System)

interface nsIDownload : nsISuppports {

  static const char[] IID_STR = NS_IDOWNLOAD_IID_STR;
  static const nsIID IID = NS_IDOWNLOAD_IID;
    
  nsresult Init(nsIURI aSource, nsIURI aTarget, nsAString* aDisplayName, nsIMIMEInfo aMIMEInfo, PRTime startTime, PRBool aPersist);
  nsresult GetSource(nsIURI  *aSource);
  nsresult GetTarget(nsIURI  *aTarget);
  nsresult GetPersist(PRBool *aPersist);
  nsresult GetPercentComplete(PRInt32 *aPercentComplete);
  nsresult GetDisplayName(PRUnichar * *aDisplayName);
  nsresult SetDisplayName(PRUnichar* aDisplayName);
  nsresult GetStartTime(PRInt64 *aStartTime);
  nsresult GetMIMEInfo(nsIMIMEInfo  *aMIMEInfo);
  nsresult GetListener(nsIWebProgressListener* aListener);
  nsresult SetListener(nsIWebProgressListener aListener);
  nsresult GetObserver(nsIObserver * aObserver);
  nsresult SetObserver(nsIObserver aObserver);
}