Changeset 107942 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 27, 2025 2:57:22 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167189
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/InstallHelper/VBoxGuestInstallHelperDll.cpp
r106892 r107942 232 232 233 233 /** 234 * Retrieves a file's architecture (x86 or amd64). 235 * 236 * Outputs "x86", "amd64" or an error message (if not found/invalid) on stack. 237 * 234 * Retrieves a file's architecture. 235 * 236 * @retval "x86" on the stack for a 32-bit x86 file. 237 * @retval "amd64" on the stack for a 64-bit x86_64 file. 238 * @retval "arm64" on the stack for a 64-bit ARM file. 238 239 * @param hwndParent Window handle of parent. 239 240 * @param string_size Size of variable string. … … 269 270 case RTLDRARCH_AMD64: 270 271 VBOX_PUSH_STRING_LITERAL(stacktop, "amd64"); 272 break; 273 274 case RTLDRARCH_ARM64: 275 VBOX_PUSH_STRING_LITERAL(stacktop, "arm64"); 271 276 break; 272 277
Note:
See TracChangeset
for help on using the changeset viewer.