VirtualBox

source: vbox/trunk/src/libs/xpcom18a4/xpcom/components/nsObsoleteModuleLoading.h@ 4837

Last change on this file since 4837 was 1, checked in by vboxsync, 54 years ago

import

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1
2#ifndef OBSOLETE_MODULE_LOADING
3/*
4 * Prototypes for dynamic library export functions. Your DLL/DSO needs to export
5 * these methods to play in the component world.
6 *
7 * THIS IS OBSOLETE. Look at nsIModule.idl
8 */
9
10extern "C" NS_EXPORT nsresult NSGetFactory(nsISupports* aServMgr,
11 const nsCID &aClass,
12 const char *aClassName,
13 const char *aContractID,
14 nsIFactory **aFactory);
15extern "C" NS_EXPORT PRBool NSCanUnload(nsISupports* aServMgr);
16extern "C" NS_EXPORT nsresult NSRegisterSelf(nsISupports* aServMgr, const char *fullpath);
17extern "C" NS_EXPORT nsresult NSUnregisterSelf(nsISupports* aServMgr, const char *fullpath);
18
19typedef nsresult (*nsFactoryProc)(nsISupports* aServMgr,
20 const nsCID &aClass,
21 const char *aClassName,
22 const char *aContractID,
23 nsIFactory **aFactory);
24typedef PRBool (*nsCanUnloadProc)(nsISupports* aServMgr);
25typedef nsresult (*nsRegisterProc)(nsISupports* aServMgr, const char *path);
26typedef nsresult (*nsUnregisterProc)(nsISupports* aServMgr, const char *path);
27#endif /* OBSOLETE_MODULE_LOADING */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use