Changeset 34647 in vbox for trunk/src/VBox/Main
- Timestamp:
- Dec 2, 2010 7:02:01 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/xpcom/module.cpp
r33488 r34647 45 45 #endif 46 46 47 #include "VirtualBoxClientImpl.h" 47 48 #include "SessionImpl.h" 48 49 #include "ConsoleImpl.h" … … 86 87 NS_DECL_CLASSINFO(Console) 87 88 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(Console, IConsole) 89 90 NS_DECL_CLASSINFO(VirtualBoxClient) 91 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(VirtualBoxClient, IVirtualBoxClient) 88 92 89 93 /** … … 139 143 //) 140 144 141 NS_GENERIC_FACTORY_CONSTRUCTOR_WITH_RC (Session) 145 NS_GENERIC_FACTORY_CONSTRUCTOR_WITH_RC(Session) 146 147 NS_GENERIC_FACTORY_CONSTRUCTOR_WITH_RC(VirtualBoxClient) 142 148 143 149 /** … … 160 166 &NS_CLASSINFO_NAME(Session) // global class info & flags 161 167 }, 168 { 169 "VirtualBoxClient component", // description 170 NS_VIRTUALBOXCLIENT_CID, NS_VIRTUALBOXCLIENT_CONTRACTID, // CID/ContractID 171 VirtualBoxClientConstructor, // constructor function 172 NULL, // registration function 173 NULL, // deregistration function 174 NULL, // destructor function 175 NS_CI_INTERFACE_GETTER_NAME(VirtualBoxClient), // interfaces function 176 NULL, // language helper 177 &NS_CLASSINFO_NAME(VirtualBoxClient) // global class info & flags 178 }, 162 179 }; 163 180
Note:
See TracChangeset
for help on using the changeset viewer.