Changeset 42852 in vbox for trunk/src/VBox/Main/src-client/xpcom
- Timestamp:
- Aug 16, 2012 5:41:41 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80115
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/xpcom/module.cpp
r42097 r42852 5 5 6 6 /* 7 * Copyright (C) 2006-20 09Oracle Corporation7 * Copyright (C) 2006-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 66 66 #ifdef VBOX_WITH_GUEST_CONTROL 67 67 NS_DECL_CLASSINFO(GuestDirectory) 68 NS_IMPL_THREADSAFE_ISUPPORTS 1_CI(GuestDirectory, IGuestDirectory)68 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(GuestDirectory, IGuestDirectory, IDirectory) 69 69 NS_DECL_CLASSINFO(GuestDirEntry) 70 70 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(GuestDirEntry, IGuestDirEntry) 71 71 NS_DECL_CLASSINFO(GuestFile) 72 NS_IMPL_THREADSAFE_ISUPPORTS 1_CI(GuestFile, IGuestFile)72 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(GuestFile, IGuestFile, IFile) 73 73 NS_DECL_CLASSINFO(GuestFsObjInfo) 74 NS_IMPL_THREADSAFE_ISUPPORTS 1_CI(GuestFsObjInfo, IGuestFsObjInfo)74 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(GuestFsObjInfo, IGuestFsObjInfo, IFsObjInfo) 75 75 NS_DECL_CLASSINFO(GuestProcess) 76 NS_IMPL_THREADSAFE_ISUPPORTS 1_CI(GuestProcess, IGuestProcess)76 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(GuestProcess, IGuestProcess, IProcess) 77 77 NS_DECL_CLASSINFO(GuestSession) 78 78 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(GuestSession, IGuestSession) … … 93 93 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(OUSBDevice, IUSBDevice) 94 94 NS_DECL_CLASSINFO(RemoteUSBDevice) 95 NS_IMPL_THREADSAFE_ISUPPORTS 1_CI(RemoteUSBDevice, IHostUSBDevice)95 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(RemoteUSBDevice, IHostUSBDevice, IUSBDevice) 96 96 NS_DECL_CLASSINFO(SharedFolder) 97 97 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(SharedFolder, ISharedFolder) … … 100 100 #ifdef VBOX_WITH_EXTPACK 101 101 NS_DECL_CLASSINFO(ExtPackFile) 102 NS_IMPL_THREADSAFE_ISUPPORTS 1_CI(ExtPackFile, IExtPackFile)102 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(ExtPackFile, IExtPackFile, IExtPackBase) 103 103 NS_DECL_CLASSINFO(ExtPack) 104 NS_IMPL_THREADSAFE_ISUPPORTS 1_CI(ExtPack, IExtPack)104 NS_IMPL_THREADSAFE_ISUPPORTS2_CI(ExtPack, IExtPack, IExtPackBase) 105 105 NS_DECL_CLASSINFO(ExtPackManager) 106 106 NS_IMPL_THREADSAFE_ISUPPORTS1_CI(ExtPackManager, IExtPackManager)
Note:
See TracChangeset
for help on using the changeset viewer.