Changeset 50323 in vbox
- Timestamp:
- Feb 5, 2014 10:20:04 AM (11 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxCredProv/VBoxCredProvUtils.cpp
r40435 r50323 22 22 #include <iprt/string.h> 23 23 #include <VBox/log.h> 24 #include <VBox/V boxGuestLib.h>24 #include <VBox/VBoxGuestLib.h> 25 25 26 26 -
trunk/src/VBox/Additions/WINNT/VBoxGINA/Dialog.cpp
r40947 r50323 20 20 #include <stdio.h> /* Needed for swprintf() */ 21 21 22 #include <VBox/V boxGuestLib.h>22 #include <VBox/VBoxGuestLib.h> 23 23 24 24 #include "Dialog.h" -
trunk/src/VBox/Additions/WINNT/VBoxGINA/Helper.cpp
r40947 r50323 27 27 28 28 #include <VBox/log.h> 29 #include <VBox/V boxGuestLib.h>29 #include <VBox/VBoxGuestLib.h> 30 30 31 31 /** Flag indicating whether remote sessions (over MSRDP) should be -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r49891 r50323 612 612 int VBoxClipboardInit(const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread) 613 613 { 614 Log(("VBoxTray: V boxClipboardInit\n"));614 Log(("VBoxTray: VBoxClipboardInit\n")); 615 615 if (gCtx.pEnv) 616 616 { -
trunk/src/VBox/Additions/common/crOpenGL/fakedri_drv.c
r49600 r50323 361 361 #ifndef VBOX_NO_MESA_PATCH_REPORTS 362 362 crDebug("Mesa Entry: %p, start: %p(%s:%s), size: %li", pMesaEntry, dlip.dli_saddr, dlip.dli_fname, dlip.dli_sname, sym->st_size); 363 crDebug("V box code: start: %p, end %p, size: %li", pStart, pEnd, pEnd-pStart);363 crDebug("VBox code: start: %p, end %p, size: %li", pStart, pEnd, pEnd-pStart); 364 364 #endif 365 365 -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r49103 r50323 375 375 com::SafeArray<BSTR> aRefs; 376 376 com::SafeArray<BSTR> aOvfValues; 377 com::SafeArray<BSTR> aV boxValues;377 com::SafeArray<BSTR> aVBoxValues; 378 378 com::SafeArray<BSTR> aExtraConfigValues; 379 379 CHECK_ERROR_BREAK(aVirtualSystemDescriptions[i], … … 381 381 ComSafeArrayAsOutParam(aRefs), 382 382 ComSafeArrayAsOutParam(aOvfValues), 383 ComSafeArrayAsOutParam(aV boxValues),383 ComSafeArrayAsOutParam(aVBoxValues), 384 384 ComSafeArrayAsOutParam(aExtraConfigValues))); 385 385 … … 402 402 Utf8Str strOverride; 403 403 404 Bstr bstrFinalValue = aV boxValues[a];404 Bstr bstrFinalValue = aVBoxValues[a]; 405 405 406 406 bool fIgnoreThis = mapIgnoresMapsPerVsys[i][a]; … … 438 438 case VirtualSystemDescriptionType_Product: 439 439 RTPrintf("%2u: Product (ignored): %ls\n", 440 a, aV boxValues[a]);440 a, aVBoxValues[a]); 441 441 break; 442 442 443 443 case VirtualSystemDescriptionType_ProductUrl: 444 444 RTPrintf("%2u: ProductUrl (ignored): %ls\n", 445 a, aV boxValues[a]);445 a, aVBoxValues[a]); 446 446 break; 447 447 448 448 case VirtualSystemDescriptionType_Vendor: 449 449 RTPrintf("%2u: Vendor (ignored): %ls\n", 450 a, aV boxValues[a]);450 a, aVBoxValues[a]); 451 451 break; 452 452 453 453 case VirtualSystemDescriptionType_VendorUrl: 454 454 RTPrintf("%2u: VendorUrl (ignored): %ls\n", 455 a, aV boxValues[a]);455 a, aVBoxValues[a]); 456 456 break; 457 457 458 458 case VirtualSystemDescriptionType_Version: 459 459 RTPrintf("%2u: Version (ignored): %ls\n", 460 a, aV boxValues[a]);460 a, aVBoxValues[a]); 461 461 break; 462 462 … … 551 551 RTPrintf("%2u: IDE controller, type %ls -- disabled\n", 552 552 a, 553 aV boxValues[a]);553 aVBoxValues[a]); 554 554 aEnabled[a] = false; 555 555 } … … 558 558 "\n (disable with \"--vsys %u --unit %u --ignore\")\n", 559 559 a, 560 aV boxValues[a],560 aVBoxValues[a], 561 561 i, a); 562 562 break; … … 567 567 RTPrintf("%2u: SATA controller, type %ls -- disabled\n", 568 568 a, 569 aV boxValues[a]);569 aVBoxValues[a]); 570 570 aEnabled[a] = false; 571 571 } … … 574 574 "\n (disable with \"--vsys %u --unit %u --ignore\")\n", 575 575 a, 576 aV boxValues[a],576 aVBoxValues[a], 577 577 i, a); 578 578 break; … … 583 583 RTPrintf("%2u: SAS controller, type %ls -- disabled\n", 584 584 a, 585 aV boxValues[a]);585 aVBoxValues[a]); 586 586 aEnabled[a] = false; 587 587 } … … 590 590 "\n (disable with \"--vsys %u --unit %u --ignore\")\n", 591 591 a, 592 aV boxValues[a],592 aVBoxValues[a], 593 593 i, a); 594 594 break; … … 599 599 RTPrintf("%2u: SCSI controller, type %ls -- disabled\n", 600 600 a, 601 aV boxValues[a]);601 aVBoxValues[a]); 602 602 aEnabled[a] = false; 603 603 } … … 618 618 "\n disable with \"--vsys %u --unit %u --ignore\")\n", 619 619 a, 620 aV boxValues[a],620 aVBoxValues[a], 621 621 i, a, i, a); 622 622 } … … 672 672 a, 673 673 aOvfValues[a], 674 aV boxValues[a],674 aVBoxValues[a], 675 675 aExtraConfigValues[a]); 676 676 } … … 682 682 a, 683 683 aOvfValues[a], 684 aV boxValues[a],684 aVBoxValues[a], 685 685 aExtraConfigValues[a], 686 686 i, a, i, a); … … 718 718 a, 719 719 aOvfValues[a], 720 aV boxValues[a],720 aVBoxValues[a], 721 721 aExtraConfigValues[a]); 722 722 break; -
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/nobj/VBoxNetFltNobj.h
r36184 r50323 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 #ifndef ___V boxNetFltNobj_h___18 #define ___V boxNetFltNobj_h___17 #ifndef ___VBoxNetFltNobj_h___ 18 #define ___VBoxNetFltNobj_h___ 19 19 20 20 #include <windows.h> … … 71 71 }; 72 72 73 #endif /* #ifndef ___V boxNetFltNobj_h___ */73 #endif /* #ifndef ___VBoxNetFltNobj_h___ */ -
trunk/src/VBox/HostDrivers/VBoxNetFlt/win/nobj/VBoxNetFltNobjRc.h
r36184 r50323 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 #ifndef ___V boxNetFltNobjRc_h___18 #define ___V boxNetFltNobjRc_h___17 #ifndef ___VBoxNetFltNobjRc_h___ 18 #define ___VBoxNetFltNobjRc_h___ 19 19 20 20 /* registry script rc ID */ 21 21 #define IDR_VBOXNETFLT_NOBJ 101 22 22 23 #endif /* #ifndef ___V boxNetFltNobjRc_h___ */23 #endif /* #ifndef ___VBoxNetFltNobjRc_h___ */
Note:
See TracChangeset
for help on using the changeset viewer.