comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/internal/mozilla/nsILoadGroup.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
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
1 module org.eclipse.swt.internal.mozilla.nsILoadGroup;
2
3 import org.eclipse.swt.internal.mozilla.Common;
4 import org.eclipse.swt.internal.mozilla.nsID;
5 import org.eclipse.swt.internal.mozilla.nsISupports;
6
7 import org.eclipse.swt.internal.mozilla.nsIRequest;
8 import org.eclipse.swt.internal.mozilla.nsISimpleEnumerator;
9 import org.eclipse.swt.internal.mozilla.nsIRequestObserver;
10 import org.eclipse.swt.internal.mozilla.nsIInterfaceRequestor;
11
12 const char[] NS_ILOADGROUP_IID_STR = "3de0a31c-feaf-400f-9f1e-4ef71f8b20cc";
13
14 const nsIID NS_ILOADGROUP_IID=
15 {0x3de0a31c, 0xfeaf, 0x400f,
16 [ 0x9f, 0x1e, 0x4e, 0xf7, 0x1f, 0x8b, 0x20, 0xcc ]};
17
18 interface nsILoadGroup : nsIRequest {
19
20 static const char[] IID_STR = NS_ILOADGROUP_IID_STR;
21 static const nsIID IID = NS_ILOADGROUP_IID;
22
23 extern(System):
24 nsresult GetGroupObserver(nsIRequestObserver *aGroupObserver);
25 nsresult SetGroupObserver(nsIRequestObserver aGroupObserver);
26 nsresult GetDefaultLoadRequest(nsIRequest *aDefaultLoadRequest);
27 nsresult SetDefaultLoadRequest(nsIRequest aDefaultLoadRequest);
28 nsresult AddRequest(nsIRequest aRequest, nsISupports aContext);
29 nsresult RemoveRequest(nsIRequest aRequest, nsISupports aContext, nsresult aStatus);
30 nsresult GetRequests(nsISimpleEnumerator *aRequests);
31 nsresult GetActiveCount(PRUint32 *aActiveCount);
32 nsresult GetNotificationCallbacks(nsIInterfaceRequestor *aNotificationCallbacks);
33 nsresult SetNotificationCallbacks(nsIInterfaceRequestor aNotificationCallbacks);
34
35 }
36