2006-11-15 13:56:19 +01:00
|
|
|
#ifndef __GECKO_DOWNLOAD_H__
|
|
|
|
#define __GECKO_DOWNLOAD_H__
|
2006-10-26 22:21:26 +02:00
|
|
|
|
|
|
|
#include <nsCOMPtr.h>
|
|
|
|
#include <nsIInterfaceRequestor.h>
|
|
|
|
#include <nsITransfer.h>
|
|
|
|
#include <nsIWebProgressListener.h>
|
|
|
|
#include <nsIMIMEInfo.h>
|
|
|
|
#include <nsIURL.h>
|
|
|
|
#include <nsILocalFile.h>
|
2006-10-27 15:39:29 +02:00
|
|
|
#include <nsStringAPI.h>
|
2006-10-26 22:21:26 +02:00
|
|
|
|
2006-11-15 13:56:19 +01:00
|
|
|
#define GECKODOWNLOAD_CID \
|
2006-10-26 22:21:26 +02:00
|
|
|
{ /* b1813bbe-6518-11db-967e-00e08161165f */ \
|
|
|
|
0xb1813bbe, \
|
|
|
|
0x6518, \
|
|
|
|
0x11db, \
|
|
|
|
{0x96, 0x7e, 0x0, 0xe0, 0x81, 0x61, 0x16, 0x5f} \
|
|
|
|
}
|
|
|
|
|
2007-01-29 18:36:10 +01:00
|
|
|
class nsIFactory;
|
2006-10-26 22:21:26 +02:00
|
|
|
|
2007-01-29 18:36:10 +01:00
|
|
|
extern "C" NS_EXPORT nsresult NS_NewGeckoDownloadFactory(nsIFactory** aFactory);
|
2006-10-26 22:21:26 +02:00
|
|
|
|
2006-11-15 13:56:19 +01:00
|
|
|
#endif // __GECKO_DOWNLOAD_H__
|