VirtualBox

Changeset 83820 in vbox


Ignore:
Timestamp:
Apr 19, 2020 1:08:36 AM (5 years ago)
Author:
vboxsync
Message:

Main: VC++ 14.1 adjustments and warnings. bugref:8489

Location:
trunk/src/VBox/Main
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/Makefile.kmk

    r83804 r83820  
    13091309 DLLS += VBoxProxyStub
    13101310 VBoxProxyStub_TEMPLATE = VBOXMAINCOMP
    1311  VBoxProxyStub_DEFS     = REGISTER_PROXY_DLL PROXY_CLSID_IS="$(VBOX_MIDL_PROXY_CLSID_IS)" \
    1312         $(if $(VBOX_WITH_SDS),VBOX_WITH_SDS,)\
    1313         $(if $(VBOX_WITH_SDS_CLIENT_WATCHER),VBOX_WITH_SDS_CLIENT_WATCHER,)
     1311 ifdef VBOX_WITH_AUTOMATIC_DEFS_QUOTING
     1312  VBoxProxyStub_DEFS   := REGISTER_PROXY_DLL PROXY_CLSID_IS=$(quote $(VBOX_MIDL_PROXY_CLSID_IS))
     1313 else
     1314  VBoxProxyStub_DEFS   := REGISTER_PROXY_DLL PROXY_CLSID_IS="$(VBOX_MIDL_PROXY_CLSID_IS)"
     1315 endif
     1316 ifdef VBOX_WITH_SDS
     1317  VBoxProxyStub_DEFS   += VBOX_WITH_SDS
     1318 endif
     1319 ifdef VBOX_WITH_SDS_CLIENT_WATCHER
     1320  VBoxProxyStub_DEFS   +=  VBOX_WITH_SDS_CLIENT_WATCHER,)
     1321 endif
    13141322 VBoxProxyStub_DEFS.win.x86 = WIN32
    13151323 VBoxProxyStub_SDKS     = VBOX_NTDLL
  • trunk/src/VBox/Main/cbinding/tstCAPIGlue.c

    r82968 r83820  
    137137    if (FAILED(rc))
    138138    {
    139         printf("cannot get event type, rc=%#x\n", rc);
     139        printf("cannot get event type, rc=%#lx\n", rc);
    140140        return S_OK;
    141141    }
     
    162162            if (FAILED(rc))
    163163            {
    164                 printf("cannot get StateChangedEvent interface, rc=%#x\n", rc);
     164                printf("cannot get StateChangedEvent interface, rc=%#lx\n", rc);
    165165                return S_OK;
    166166            }
     
    172172            rc = IStateChangedEvent_get_State(ev, &state);
    173173            if (FAILED(rc))
    174                 printf("warning: cannot get state, rc=%#x\n", rc);
     174                printf("warning: cannot get state, rc=%#lx\n", rc);
    175175            IStateChangedEvent_Release(ev);
    176176            printf("OnStateChanged: %s\n", GetStateName(state));
     
    621621                        if (FAILED(rc))
    622622                        {
    623                             printf("Failed getting event: %#x\n", rc);
     623                            printf("Failed getting event: %#lx\n", rc);
    624624                            g_fStop = 1;
    625625                            continue;
     
    631631                        if (FAILED(rc))
    632632                        {
    633                             printf("Failed processing event: %#x\n", rc);
     633                            printf("Failed processing event: %#lx\n", rc);
    634634                            g_fStop = 1;
    635635                            /* finish processing the event */
     
    638638                        if (FAILED(rc))
    639639                        {
    640                             printf("Failed to mark event as processed: %#x\n", rc);
     640                            printf("Failed to mark event as processed: %#lx\n", rc);
    641641                            g_fStop = 1;
    642642                            /* continue with event release */
     
    771771            char *group;
    772772            g_pVBoxFuncs->pfnUtf16ToUtf8(groups[i], &group);
    773             printf("Groups[%d]: %s\n", i, group);
     773            printf("Groups[%lu]: %s\n", i, group);
    774774            g_pVBoxFuncs->pfnUtf8Free(group);
    775775        }
     
    933933
    934934                IMachine_get_MemorySize(machine, &memorySize);
    935                 printf("\tMemory size: %uMB\n", memorySize);
     935                printf("\tMemory size: %luMB\n", memorySize);
    936936            }
    937937
     
    10611061    rc = IVirtualBox_get_Revision(vbox, &revision);
    10621062    if (SUCCEEDED(rc))
    1063         printf("\tRevision: %u\n", revision);
     1063        printf("\tRevision: %lu\n", revision);
    10641064    else
    10651065        PrintErrorInfo(argv[0], "GetRevision() failed", rc);
  • trunk/src/VBox/Main/src-all/win/VBoxProxyStub.c

    r82968 r83820  
    21132113         */
    21142114        HKEY hkeyTypeLibs;
    2115         LRESULT rc;
     2115        LSTATUS rc;
    21162116        rc = RegOpenKeyExW(pState->aAltDeletes[iAlt].hkeyClasses, L"TypeLib", 0 /*fOptions*/, pState->fSamDelete, &hkeyTypeLibs);
    21172117        if (rc == ERROR_SUCCESS)
     
    21242124            {
    21252125                HKEY hkeyTypeLibId;
    2126                 LONG rc = RegOpenKeyExW(hkeyTypeLibs, g_apwszTypeLibIds[iTlb], 0 /*fOptions*/, pState->fSamDelete, &hkeyTypeLibId);
     2126                rc = RegOpenKeyExW(hkeyTypeLibs, g_apwszTypeLibIds[iTlb], 0 /*fOptions*/, pState->fSamDelete, &hkeyTypeLibId);
    21272127                if (rc == ERROR_SUCCESS)
    21282128                {
  • trunk/src/VBox/Main/src-helper-apps/VBoxExtPackHelperApp.cpp

    r82968 r83820  
    13441344                                break;
    13451345                            }
    1346                             MSG Msg;
    13471346                            while (PeekMessageW(&Msg, NULL, 0, 0, PM_REMOVE))
    13481347                            {
  • trunk/src/VBox/Main/testcase/msiDarwinDescriptorDecoder.cpp

    r82968 r83820  
    5454                    " ->     FeatureId=%ls\n"
    5555                    " -> ComponentCode=%ls\n"
    56                     " ->  offArguments=%#x (%d)\n"
     56                    " ->  offArguments=%#lx (%ld)\n"
    5757                    , iArg, papwszArgs[iArg], wszProductCode, wszFeatureId, wszComponentCode, offArguments, offArguments);
    5858        }
     
    6161            fprintf(stderr,
    6262                    "#%u: '%ls'\n"
    63                     " -> error %u (%#x)\n"
     63                    " -> error %lu (%#lx)\n"
    6464                    , iArg, papwszArgs[iArg], dwErr, dwErr);
    6565            rcExit = 1;
  • trunk/src/VBox/Main/testcase/tstVBoxAPIWin.cpp

    r82968 r83820  
    117117
    118118        if (FAILED(rc))
    119             printf("Error getting error info! rc = 0x%x\n", rc);
     119            printf("Error getting error info! rc=%#lx\n", rc);
    120120        else
    121121        {
     
    125125
    126126            if (FAILED(rc) || !errorDescription)
    127                 printf("Error getting error description! rc = 0x%x\n", rc);
     127                printf("Error getting error description! rc=%#lx\n", rc);
    128128            else
    129129            {
     
    161161
    162162        if (FAILED(rc))
    163             printf("Error getting error info! rc = 0x%x\n", rc);
     163            printf("Error getting error info! rc=%#lx\n", rc);
    164164        else
    165165        {
     
    169169
    170170            if (FAILED(rc) || !errorDescription)
    171                 printf("Error getting error description! rc = 0x%x\n", rc);
     171                printf("Error getting error description! rc=%#lx\n", rc);
    172172            else
    173173            {
     
    193193            if (!SUCCEEDED(rc))
    194194            {
    195                 printf("Error retrieving machine ID! rc = 0x%x\n", rc);
     195                printf("Error retrieving machine ID! rc=%#lx\n", rc);
    196196                break;
    197197            }
     
    205205            if (!SUCCEEDED(rc))
    206206            {
    207                 printf("Error creating Session instance! rc = 0x%x\n", rc);
     207                printf("Error creating Session instance! rc=%#lx\n", rc);
    208208                break;
    209209            }
     
    214214            if (!SUCCEEDED(rc))
    215215            {
    216                 printf("Could not open remote session! rc = 0x%x\n", rc);
     216                printf("Could not open remote session! rc=%#lx\n", rc);
    217217                break;
    218218            }
     
    287287        }
    288288        else
    289             printf("Error creating VirtualBox instance! rc = 0x%x\n", rc);
     289            printf("Error creating VirtualBox instance! rc=%#lx\n", rc);
    290290    }
    291291
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette