Changeset 10423 in vbox
- Timestamp:
- Jul 9, 2008 2:06:48 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33083
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/HostImpl.cpp
r10407 r10423 681 681 * @param speed address of result variable, speed is 0 if unknown or cpuId is invalid. 682 682 */ 683 STDMETHODIMP Host:: COMGETTER(ProcessorSpeed)(ULONG cpuId, ULONG *speed)683 STDMETHODIMP Host::GetProcessorSpeed(ULONG cpuId, ULONG *speed) 684 684 { 685 685 if (!speed) … … 699 699 * @param description address of result variable, NULL if known or cpuId is invalid. 700 700 */ 701 STDMETHODIMP Host:: COMGETTER(ProcessorDescription)(ULONG cpuId, BSTR *description)701 STDMETHODIMP Host::GetProcessorDescription(ULONG cpuId, BSTR *description) 702 702 { 703 703 if (!description) -
trunk/src/VBox/Main/include/HostImpl.h
r10399 r10423 89 89 #endif 90 90 STDMETHOD(COMGETTER(ProcessorCount))(ULONG *count); 91 STDMETHOD( COMGETTER(ProcessorSpeed))(ULONG cpuId, ULONG *speed);92 STDMETHOD( COMGETTER(ProcessorDescription))(ULONG cpuId, BSTR *description);91 STDMETHOD(GetProcessorSpeed)(ULONG cpuId, ULONG *speed); 92 STDMETHOD(GetProcessorDescription)(ULONG cpuId, BSTR *description); 93 93 STDMETHOD(COMGETTER(MemorySize))(ULONG *size); 94 94 STDMETHOD(COMGETTER(MemoryAvailable))(ULONG *available);
Note:
See TracChangeset
for help on using the changeset viewer.