儲存庫 vbox 的更動 12284
- 時間撮記:
- 2008-9-9 上午10:26:27 (16 年 以前)
- 位置:
- trunk/src/VBox/Main
- 檔案:
-
- 修改 4 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Main/Makefile.kmk
r12275 r12284 274 274 SystemPropertiesImpl.cpp \ 275 275 BIOSSettingsImpl.cpp \ 276 Version.cpp \ 276 277 $(if $(VBOX_WITH_VRDP),VRDPServerImpl.cpp,) \ 277 278 $(if $(VBOX_WITH_XPCOM),xpcom/server.cpp,) \ -
trunk/src/VBox/Main/VirtualBoxImpl.cpp
r10595 r12284 34 34 #include "SystemPropertiesImpl.h" 35 35 #include "GuestOSTypeImpl.h" 36 #include "Version.h" 36 37 37 38 #include "VirtualBoxXMLUtil.h" … … 99 100 100 101 // static 102 ULONG VirtualBox::sRevision; 103 104 // static 101 105 Bstr VirtualBox::sPackageType; 102 106 … … 151 155 if (sVersion.isNull()) 152 156 sVersion = VBOX_VERSION_STRING; 157 sRevision = VBoxSVNRev(); 153 158 if (sPackageType.isNull()) 154 159 sPackageType = VBOX_PACKAGE_STRING; … … 493 498 494 499 sVersion.cloneTo (aVersion); 500 return S_OK; 501 } 502 503 STDMETHODIMP VirtualBox::COMGETTER(Revision) (ULONG *aRevision) 504 { 505 if (!aRevision) 506 return E_INVALIDARG; 507 508 AutoCaller autoCaller (this); 509 CheckComRCReturnRC (autoCaller.rc()); 510 511 *aRevision = sRevision; 495 512 return S_OK; 496 513 } -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r12126 r12284 939 939 </attribute> 940 940 941 <attribute name="revision" type="unsigned long" readonly="yes"> 942 <desc> 943 The internal build revision number of the product. 944 </desc> 945 </attribute> 946 941 947 <attribute name="packageType" type="wstring" readonly="yes"> 942 948 <desc> -
trunk/src/VBox/Main/include/VirtualBoxImpl.h
r10595 r12284 117 117 /* IVirtualBox properties */ 118 118 STDMETHOD(COMGETTER(Version)) (BSTR *aVersion); 119 STDMETHOD(COMGETTER(Revision)) (ULONG *aRevision); 119 120 STDMETHOD(COMGETTER(PackageType)) (BSTR *aPackageType); 120 121 STDMETHOD(COMGETTER(HomeFolder)) (BSTR *aHomeFolder); … … 489 490 490 491 static Bstr sVersion; 492 static ULONG sRevision; 491 493 static Bstr sPackageType; 492 494 static Bstr sSettingsFormatVersion;
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器