Changeset 17911 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 16, 2009 10:30:55 AM (16 years ago)
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MachineImpl.h
r17755 r17911 634 634 virtual HRESULT onDVDDriveChange() { return S_OK; } 635 635 virtual HRESULT onFloppyDriveChange() { return S_OK; } 636 virtual HRESULT onNetworkAdapterChange(INetworkAdapter * networkAdapter) { return S_OK; }637 virtual HRESULT onSerialPortChange(ISerialPort * serialPort) { return S_OK; }638 virtual HRESULT onParallelPortChange(IParallelPort * ParallelPort) { return S_OK; }636 virtual HRESULT onNetworkAdapterChange(INetworkAdapter * /* networkAdapter */) { return S_OK; } 637 virtual HRESULT onSerialPortChange(ISerialPort * /* serialPort */) { return S_OK; } 638 virtual HRESULT onParallelPortChange(IParallelPort * /* parallelPort */) { return S_OK; } 639 639 virtual HRESULT onVRDPServerChange() { return S_OK; } 640 640 virtual HRESULT onUSBControllerChange() { return S_OK; } -
trunk/src/VBox/Main/include/MediumImpl.h
r16867 r17911 159 159 * within this object's AutoWriteLock. 160 160 */ 161 virtual HRESULT canAttach (const Guid & aMachineId,162 const Guid & aSnapshotId)161 virtual HRESULT canAttach (const Guid & /* aMachineId */, 162 const Guid & /* aSnapshotId */) 163 163 { return S_OK; } 164 164 -
trunk/src/VBox/Main/include/Performance.h
r15051 r17911 143 143 public: 144 144 virtual ~CollectorHAL() { }; 145 virtual int preCollect(const CollectorHints& hints) { return VINF_SUCCESS; }145 virtual int preCollect(const CollectorHints& /* hints */) { return VINF_SUCCESS; } 146 146 virtual int getHostCpuLoad(ULONG *user, ULONG *kernel, ULONG *idle); 147 147 virtual int getHostCpuMHz(ULONG *mhz); … … 233 233 234 234 void init(ULONG period, ULONG length); 235 void preCollect(CollectorHints& hints) {}235 void preCollect(CollectorHints& /* hints */) {} 236 236 void collect(); 237 237 const char *getUnit() { return "MHz"; }; -
trunk/src/VBox/Main/include/VirtualBoxErrorInfoImpl.h
r15051 r17911 84 84 // is available in this class. 85 85 static const char *tr (const char *a) { return a; } 86 static HRESULT setError (HRESULT rc, const char *a, 87 const char *b, void *c) { return rc; } 86 static HRESULT setError (HRESULT rc, 87 const char * /* a */, 88 const char * /* b */, 89 void * /* c */) { return rc; } 88 90 89 91 HRESULT mResultCode;
Note:
See TracChangeset
for help on using the changeset viewer.