Changeset 101043 in vbox for trunk/src/VBox/Main
- Timestamp:
- Sep 7, 2023 10:16:04 AM (17 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/PlatformARMImpl.h
r101035 r101043 26 26 */ 27 27 28 #ifndef MAIN_INCLUDED_PlatformARM _h29 #define MAIN_INCLUDED_PlatformARM _h28 #ifndef MAIN_INCLUDED_PlatformARMImpl_h 29 #define MAIN_INCLUDED_PlatformARMImpl_h 30 30 #ifndef RT_WITHOUT_PRAGMA_ONCE 31 31 # pragma once … … 69 69 HRESULT i_applyDefaults(GuestOSType *aOsType); 70 70 }; 71 #endif /* !MAIN_INCLUDED_PlatformARM _h */71 #endif /* !MAIN_INCLUDED_PlatformARMImpl_h */ 72 72 -
trunk/src/VBox/Main/include/PlatformPropertiesImpl.h
r101035 r101043 26 26 */ 27 27 28 #ifndef MAIN_INCLUDED_PlatformProperties _h29 #define MAIN_INCLUDED_PlatformProperties _h28 #ifndef MAIN_INCLUDED_PlatformPropertiesImpl_h 29 #define MAIN_INCLUDED_PlatformPropertiesImpl_h 30 30 #ifndef RT_WITHOUT_PRAGMA_ONCE 31 31 # pragma once … … 129 129 }; 130 130 131 #endif /* !MAIN_INCLUDED_PlatformProperties _h */131 #endif /* !MAIN_INCLUDED_PlatformPropertiesImpl_h */ 132 132 -
trunk/src/VBox/Main/include/PlatformX86Impl.h
r101035 r101043 26 26 */ 27 27 28 #ifndef MAIN_INCLUDED_PlatformX86 _h29 #define MAIN_INCLUDED_PlatformX86 _h28 #ifndef MAIN_INCLUDED_PlatformX86Impl_h 29 #define MAIN_INCLUDED_PlatformX86Impl_h 30 30 #ifndef RT_WITHOUT_PRAGMA_ONCE 31 31 # pragma once … … 87 87 }; 88 88 89 #endif /* !MAIN_INCLUDED_PlatformX86 _h */89 #endif /* !MAIN_INCLUDED_PlatformX86Impl_h */ 90 90 -
trunk/src/VBox/Main/src-client/ConsoleImplConfigCommon.cpp
r101035 r101043 517 517 AssertComRCReturn(hrc, VERR_COM_VM_ERROR); 518 518 519 int rc;520 521 519 switch (platformArch) 522 520 { … … 529 527 #endif 530 528 default: 531 rc = VERR_PLATFORM_ARCH_NOT_SUPPORTED;532 529 break; 533 530 } 534 531 535 return rc;532 return VERR_PLATFORM_ARCH_NOT_SUPPORTED;; 536 533 } 537 534
Note:
See TracChangeset
for help on using the changeset viewer.