VirtualBox

Changeset 13836 in vbox for trunk/src/VBox/Additions/WINNT


Ignore:
Timestamp:
Nov 5, 2008 2:42:54 AM (16 years ago)
Author:
vboxsync
Message:

s/ELEMENTS/RT_ELEMENTS/g - retiring ELEMENTS (finally).

Location:
trunk/src/VBox/Additions/WINNT
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/Graphics/Display/drv.c

    r8155 r13836  
    8787    {
    8888        PPDEV ppdev = (PPDEV)pso->dhpdev;
    89        
    90         /* The screen surface has the 'pso->dhpdev' field, 
     89
     90        /* The screen surface has the 'pso->dhpdev' field,
    9191         * and is either the screen device surface with handle = hsurfScreen,
    9292         * or a surface derived from DDRAW with address equal to the framebuffer.
     
    302302
    303303    STATPRINT;
    304    
     304
    305305#ifdef VBOX_VBVA_ADJUST_RECT
    306     /* Experimental fix for too large bitmap updates. 
     306    /* Experimental fix for too large bitmap updates.
    307307     *
    308308     * Some application do a large bitmap update event if only
     
    312312     * the current framebuffer content with the source bitmap.
    313313     *
    314      * The optimization is only active when: 
     314     * The optimization is only active when:
    315315     *  - the VBVA extension is enabled;
    316316     *  - the source bitmap is not cacheable;
     
    597597            DISPDBG((1, "DrvSaveScreenBits: SS_SAVE %d\n", ppdev->cSSB));
    598598
    599             if (ppdev->cSSB >= ELEMENTS(ppdev->aSSB))
     599            if (ppdev->cSSB >= RT_ELEMENTS(ppdev->aSSB))
    600600            {
    601601                /* All slots are already in use. Fail. */
  • trunk/src/VBox/Additions/WINNT/Graphics/Display/vrdp.c

    r8155 r13836  
    231231    prcl->right  = x + w;
    232232    prcl->bottom = y + h;
    233    
     233
    234234    DISPDBG((1, "vrdpAdjustRect: result %d-%d %d-%d\n", prcl->left, prcl->right, prcl->top, prcl->bottom));
    235235}
     
    11941194        ULONG ulForeRGB = pboFore? vrdpColor2RGB (pso, pboFore->iSolidColor): 0;
    11951195        ULONG ulBackRGB = pboOpaque? vrdpColor2RGB (pso, pboOpaque->iSolidColor): 0;
    1196        
     1196
    11971197        DISPDBG((1, "VRDP::vrdpTextOut: calling vboxReportText fg %x bg %x\n",
    11981198                    ulForeRGB, ulBackRGB));
    1199                    
     1199
    12001200        if (!vboxReportText (ppdev, &clipRects, pstro, pfo, prclOpaque, ulForeRGB, ulBackRGB))
    12011201        {
     
    13451345static void vrdpPolyPointsAdd (VRDPORDERPOLYPOINTS *pPoints, const VRDPORDERPOINT *ppt)
    13461346{
    1347     VBVA_ASSERT(pPoints->c < ELEMENTS(pPoints->a));
     1347    VBVA_ASSERT(pPoints->c < RT_ELEMENTS(pPoints->a));
    13481348
    13491349    pPoints->a[pPoints->c] = *ppt;
     
    15171517                vrdpExtendOrderBounds (&bounds, &pt);
    15181518
    1519                 if (order.points.c == ELEMENTS(order.points.a))
     1519                if (order.points.c == RT_ELEMENTS(order.points.a))
    15201520                {
    15211521                    /* Flush the order and start a new order. */
     
    15381538                    || ptStart.y != pt.y)
    15391539                {
    1540                     VBVA_ASSERT(order.points.c < ELEMENTS(order.points.a));
     1540                    VBVA_ASSERT(order.points.c < RT_ELEMENTS(order.points.a));
    15411541
    15421542                    vrdpPolyPointsAdd     (&order.points, &ptStart);
  • trunk/src/VBox/Additions/WINNT/Graphics/Display/vrdpbmp.c

    r8155 r13836  
    144144    /* Get the free entry to be used. Try tail, that should be */
    145145    pEntry = pCache->tail;
    146    
     146
    147147    if (pEntry == NULL)
    148148    {
     
    221221
    222222    pCache->head = &pCache->aEntries[0];
    223     pCache->tail = &pCache->aEntries[ELEMENTS(pCache->aEntries) - 1];
    224 
    225     for (i = 0; i < ELEMENTS(pCache->aEntries); i++)
     223    pCache->tail = &pCache->aEntries[RT_ELEMENTS(pCache->aEntries) - 1];
     224
     225    for (i = 0; i < RT_ELEMENTS(pCache->aEntries); i++)
    226226    {
    227227        VRDPBCENTRY *pEntry = &pCache->aEntries[i];
  • trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxVRDP.cpp

    r10777 r13836  
    9191{
    9292    int i;
    93     for (i = 0; i < ELEMENTS(parameters); i++)
     93    for (i = 0; i < RT_ELEMENTS(parameters); i++)
    9494    {
    9595        if (parameters[i].level > level)
     
    9999             */
    100100            Log(("VBoxTray: vboxExperienceSet: Saving %s\n", parameters[i].name));
    101            
     101
    102102            /* Save the current value. */
    103103            switch (parameters[i].type)
     
    106106                {
    107107                    /* The 2nd parameter is size in characters of the buffer.
    108                      * The 3rd parameter points to the buffer. 
     108                     * The 3rd parameter points to the buffer.
    109109                     */
    110110                    SystemParametersInfo (parameters[i].uActionGet,
     
    126126                case VBOX_SPI_PTR:
    127127                {
    128                     /* The 3rd parameter points to the structure. 
     128                    /* The 3rd parameter points to the structure.
    129129                     * The cbSize member of this structure must be set.
    130130                     * The uiParam parameter must alos be set.
     
    135135                        break;
    136136                    }
    137                    
     137
    138138                    *(UINT *)&parameters[i].achSavedValue[0] = parameters[i].cbSavedValue;
    139                    
     139
    140140                    SystemParametersInfo (parameters[i].uActionGet,
    141141                                          parameters[i].cbSavedValue,
     
    147147                    break;
    148148            }
    149            
     149
    150150            Log(("VBoxTray: vboxExperienceSet: Disabling %s\n", parameters[i].name));
    151            
     151
    152152            /* Disable the feature. */
    153153            switch (parameters[i].type)
     
    199199{
    200200    int i;
    201     for (i = 0; i < ELEMENTS(parameters); i++)
     201    for (i = 0; i < RT_ELEMENTS(parameters); i++)
    202202    {
    203203        if (parameters[i].level > level)
    204204        {
    205205            Log(("VBoxTray: vboxExperienceRestore: Restoring %s\n", parameters[i].name));
    206            
     206
    207207            /* Restore the feature. */
    208208            switch (parameters[i].type)
     
    260260    uint32_t level;
    261261    BOOL fSavedThemeEnabled;
    262    
     262
    263263    HMODULE hModule;
    264264
     
    280280
    281281    gCtx.hModule = LoadLibrary("UxTheme");
    282    
     282
    283283    if (gCtx.hModule)
    284284    {
     
    290290        gCtx.pfnEnableTheming = 0;
    291291    }
    292    
     292
    293293    *pfStartThread = true;
    294294    *ppInstance = &gCtx;
     
    318318    VBoxGuestFilterMaskInfo maskInfo;
    319319    DWORD cbReturned;
    320    
     320
    321321    maskInfo.u32OrMask = VMMDEV_EVENT_VRDP;
    322322    maskInfo.u32NotMask = 0;
     
    352352                /* Call the host to get VRDP status and the experience level. */
    353353                VMMDevVRDPChangeRequest vrdpChangeRequest = {0};
    354                
     354
    355355                vrdpChangeRequest.header.size            = sizeof(VMMDevVRDPChangeRequest);
    356356                vrdpChangeRequest.header.version         = VMMDEV_REQUEST_HEADER_VERSION;
     
    358358                vrdpChangeRequest.u8VRDPActive           = 0;
    359359                vrdpChangeRequest.u32VRDPExperienceLevel = 0;
    360                
     360
    361361                if (DeviceIoControl (gVBoxDriver,
    362362                                     VBOXGUEST_IOCTL_VMMREQUEST(sizeof(VMMDevVRDPChangeRequest)),
     
    368368                {
    369369                    Log(("VBoxTray: VBoxVRDPThread: u8VRDPActive = %d, level %d\n", vrdpChangeRequest.u8VRDPActive, vrdpChangeRequest.u32VRDPExperienceLevel));
    370                    
     370
    371371                    if (vrdpChangeRequest.u8VRDPActive)
    372372                    {
    373373                        pCtx->level = vrdpChangeRequest.u32VRDPExperienceLevel;
    374374                        vboxExperienceSet (pCtx->level);
    375    
     375
    376376                        if (pCtx->level == VRDP_EXPERIENCE_LEVEL_ZERO
    377377                            && pCtx->pfnEnableTheming
     
    379379                        {
    380380                            pCtx->fSavedThemeEnabled = pCtx->pfnIsThemeActive ();
    381                            
     381
    382382                            Log(("VBoxTray: VBoxVRDPThread: pCtx->fSavedThemeEnabled = %d\n", pCtx->fSavedThemeEnabled));
    383                            
     383
    384384                            if (pCtx->fSavedThemeEnabled)
    385385                            {
     
    402402                            }
    403403                        }
    404                        
     404
    405405                        vboxExperienceRestore (pCtx->level);
    406                        
     406
    407407                        pCtx->level = VRDP_EXPERIENCE_LEVEL_FULL;
    408408                    }
     
    420420                }
    421421            }
    422         } 
     422        }
    423423        else
    424424        {
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