comparison dwt/internal/mozilla/nsIComponentRegistrar.d @ 125:5583f8eeee6c

Synced mozilla with dwt-linux
author Jacob Carlborg <doob@me.com>
date Fri, 16 Jan 2009 12:49:08 +0100
parents d8635bb48c7c
children
comparison
equal deleted inserted replaced
124:540fa4e9974a 125:5583f8eeee6c
1 /* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is Mozilla Communicator client code, released March 31, 1998.
15 *
16 * The Initial Developer of the Original Code is
17 * Netscape Communications Corporation.
18 * Portions created by Netscape are Copyright (C) 1998-1999
19 * Netscape Communications Corporation. All Rights Reserved.
20 *
21 * Contributor(s):
22 *
23 * IBM
24 * - Binding to permit interfacing between Mozilla and DWT
25 * - Copyright (C) 2003, 2008 IBM Corp. All Rights Reserved.
26 *
27 * ***** END LICENSE BLOCK ***** */
28 module dwt.internal.mozilla.nsIComponentRegistrar; 1 module dwt.internal.mozilla.nsIComponentRegistrar;
29 2
30 import dwt.dwthelper.utils; 3 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsID;
5 import dwt.internal.mozilla.nsISupports;
6 import dwt.internal.mozilla.nsIFile;
7 import dwt.internal.mozilla.nsIFactory;
8 import dwt.internal.mozilla.nsISimpleEnumerator;
31 9
32 public class nsIComponentRegistrar extends nsISupports { 10 const char[] NS_ICOMPONENTREGISTRAR_IID_STR = "2417cbfe-65ad-48a6-b4b6-eb84db174392";
33 11
34 static final int LAST_METHOD_ID = nsISupports.LAST_METHOD_ID + 12; 12 const nsIID NS_ICOMPONENTREGISTRAR_IID=
13 {0x2417cbfe, 0x65ad, 0x48a6,
14 [ 0xb4, 0xb6, 0xeb, 0x84, 0xdb, 0x17, 0x43, 0x92 ]};
35 15
36 public static final String NS_ICOMPONENTREGISTRAR_IID_STR = 16 interface nsIComponentRegistrar : nsISupports {
37 "2417cbfe-65ad-48a6-b4b6-eb84db174392"; 17 static const char[] IID_STR = NS_ICOMPONENTREGISTRAR_IID_STR;
18 static const nsIID IID = NS_ICOMPONENTREGISTRAR_IID;
38 19
39 public static final nsID NS_ICOMPONENTREGISTRAR_IID = 20 extern(System):
40 new nsID(NS_ICOMPONENTREGISTRAR_IID_STR); 21 nsresult AutoRegister(nsIFile aSpec);
22 nsresult AutoUnregister(nsIFile aSpec);
23 nsresult RegisterFactory(nsCID * aClass, char *aClassName, char *aContractID, nsIFactory aFactory);
24 nsresult UnregisterFactory(nsCID * aClass, nsIFactory aFactory);
25 nsresult RegisterFactoryLocation(nsCID * aClass, char *aClassName, char *aContractID, nsIFile aFile, char *aLoaderStr, char *aType);
26 nsresult UnregisterFactoryLocation(nsCID * aClass, nsIFile aFile);
27 nsresult IsCIDRegistered(nsCID * aClass, PRBool *_retval);
28 nsresult IsContractIDRegistered(char *aContractID, PRBool *_retval);
29 nsresult EnumerateCIDs(nsISimpleEnumerator *_retval);
30 nsresult EnumerateContractIDs(nsISimpleEnumerator *_retval);
31 nsresult CIDToContractID(nsCID * aClass, char **_retval);
32 nsresult ContractIDToCID(char *aContractID, nsCID * *_retval);
33 }
41 34
42 public nsIComponentRegistrar(int /*long*/ address) {
43 super(address);
44 }
45
46 public int AutoRegister(int /*long*/ aSpec) {
47 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 1, getAddress(), aSpec);
48 }
49
50 public int AutoUnregister(int /*long*/ aSpec) {
51 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 2, getAddress(), aSpec);
52 }
53
54 public int RegisterFactory(nsID aClass, byte[] aClassName, byte[] aContractID, int /*long*/ aFactory) {
55 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 3, getAddress(), aClass, aClassName, aContractID, aFactory);
56 }
57
58 public int UnregisterFactory(nsID aClass, int /*long*/ aFactory) {
59 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 4, getAddress(), aClass, aFactory);
60 }
61
62 public int RegisterFactoryLocation(nsID aClass, byte[] aClassName, byte[] aContractID, int /*long*/ aFile, byte[] aLoaderStr, byte[] aType) {
63 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 5, getAddress(), aClass, aClassName, aContractID, aFile, aLoaderStr, aType);
64 }
65
66 public int UnregisterFactoryLocation(nsID aClass, int /*long*/ aFile) {
67 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 6, getAddress(), aClass, aFile);
68 }
69
70 public int IsCIDRegistered(nsID aClass, int[] _retval) {
71 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 7, getAddress(), aClass, _retval);
72 }
73
74 public int IsContractIDRegistered(byte[] aContractID, int[] _retval) {
75 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 8, getAddress(), aContractID, _retval);
76 }
77
78 public int EnumerateCIDs(int /*long*/[] _retval) {
79 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 9, getAddress(), _retval);
80 }
81
82 public int EnumerateContractIDs(int /*long*/[] _retval) {
83 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 10, getAddress(), _retval);
84 }
85
86 public int CIDToContractID(nsID aClass, int /*long*/[] _retval) {
87 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 11, getAddress(), aClass, _retval);
88 }
89
90 public int ContractIDToCID(byte[] aContractID, int /*long*/ _retval) {
91 return XPCOM.VtblCall(nsISupports.LAST_METHOD_ID + 12, getAddress(), aContractID, _retval);
92 }
93 }