comparison dwt/internal/mozilla/nsXPCOM.d @ 278:93409d9838c5

Commit more browser/xpcom updates, including still uncoverted source.
author John Reimer<terminal.node@gmail.com>
date Thu, 31 Jul 2008 19:17:51 -0700
parents dd63eb078d7a
children 44258e0b6687 3dfa75c74ed2
comparison
equal deleted inserted replaced
277:687f261028b8 278:93409d9838c5
1 /******************************************************************************
2
1 module dwt.internal.mozilla.nsXPCOM; 3 module dwt.internal.mozilla.nsXPCOM;
2 4
3 import dwt.internal.mozilla.Common; 5 import dwt.internal.mozilla.Common;
4 import dwt.internal.mozilla.nsStringAPI; 6 import dwt.internal.mozilla.nsStringAPI;
5 import dwt.internal.mozilla.nsIModule; 7 import dwt.internal.mozilla.nsIModule;
41 nsresult NS_ShutdownXPCOM(nsIServiceManager servMgr); 43 nsresult NS_ShutdownXPCOM(nsIServiceManager servMgr);
42 nsresult NS_GetServiceManager(nsIServiceManager *result); 44 nsresult NS_GetServiceManager(nsIServiceManager *result);
43 nsresult NS_GetComponentManager(nsIComponentManager *result); 45 nsresult NS_GetComponentManager(nsIComponentManager *result);
44 nsresult NS_GetComponentRegistrar(nsIComponentRegistrar *result); 46 nsresult NS_GetComponentRegistrar(nsIComponentRegistrar *result);
45 nsresult NS_GetMemoryManager(nsIMemory *result); 47 nsresult NS_GetMemoryManager(nsIMemory *result);
46 nsresult NS_NewLocalFile(nsAString path, PRBool followLinks, nsILocalFile *result); 48 nsresult NS_NewLocalFile(inout nsAString path, PRBool followLinks, nsILocalFile** result);
47 nsresult NS_NewNativeLocalFile(nsACString path, PRBool followLinks, nsILocalFile *result); 49 nsresult NS_NewNativeLocalFile(inout nsACString path, PRBool followLinks, nsILocalFile** result);
48 void * NS_Alloc(PRSize size); 50 void * NS_Alloc(PRSize size);
49 void * NS_Realloc(void *ptr, PRSize size); 51 void * NS_Realloc(void *ptr, PRSize size);
50 void NS_Free(void *ptr); 52 void NS_Free(void *ptr);
51 nsresult NS_GetDebug(nsIDebug **result); 53 nsresult NS_GetDebug(nsIDebug **result);
52 nsresult NS_GetTraceRefcnt(nsITraceRefcnt *result); 54 nsresult NS_GetTraceRefcnt(nsITraceRefcnt *result);