VirtualBox

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


Ignore:
Timestamp:
Oct 7, 2013 9:32:37 PM (11 years ago)
Author:
vboxsync
Message:

Additions/nt: Whitespace and svn:keyword cleanups by scm.

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/Graphics/Makefile.kmk

    r43589 r48944  
    2222include $(PATH_SUB_CURRENT)/Video/Makefile.kmk
    2323ifdef VBOX_WITH_CROGL
    24  if !defined(VBOX_WITH_NEW_WINE) 
     24 if !defined(VBOX_WITH_NEW_WINE)
    2525  include $(PATH_SUB_CURRENT)/Wine/Makefile.kmk
    2626 else
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/Makefile.kmk

    r42280 r48944  
    221221        $(call MSG_TOOL,Inf2Cat,VBoxVideoWddm-inf,$@,$<)
    222222        $(call VBOX_MAKE_CAT_FN, $(@D),$@)
    223        
     223
    224224 ifdef VBOX_WITH_WDDM_W8
    225225  VBOXWDDMW8_WITH_DISPD3D = 1
     
    227227   VBOXWDDMW8_WITH_GL = 1
    228228  endif
    229  
     229
    230230  INSTALLS += VBoxVideoW8-inf
    231231  VBoxVideoW8-inf_INST = $(INST_ADDITIONS)
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/VBoxDispD3D.cpp

    r46783 r48944  
    18571857static HRESULT APIENTRY vboxWddmDispGetCaps (HANDLE hAdapter, CONST D3DDDIARG_GETCAPS* pData)
    18581858{
    1859         VBOXDISP_DDI_PROLOGUE_ADP(hAdapter);
     1859        VBOXDISP_DDI_PROLOGUE_ADP(hAdapter);
    18601860
    18611861    vboxVDbgPrint(("==> "__FUNCTION__", hAdapter(0x%p), caps type(%d)\n", hAdapter, pData->Type));
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/VBoxDispVrdpBmp.cpp

    r45768 r48944  
    3030 * "Temporary" list contains free and temporary entries. Temporary entries are at the head,
    3131 * free entries are at the tail. New temporary entries are inserted in the head.
    32  * 
     32 *
    3333 * "Cached" list contains cached entries. When a entry is used, it is moved to the head.
    3434 *
     
    317317 *    if the hash is used again, mark as cached and tell the caller to cache the bitmap;
    318318 *    remove "temporary" entries before any other.
    319  *   
     319 *
    320320 */
    321321int vrdpbmpCacheSurface(VRDPBC *pCache, const SURFOBJ *pso, VRDPBCHASH *phash, VRDPBCHASH *phashDeleted, BOOL bForce)
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/Makefile.kmk

    r46757 r48944  
    172172        $(PATH_SDK_$(VBOX_WINDDK_GST_W8)_LIB)/BufferOverflowK.lib
    173173 endif # VBOX_WITH_WDDM_W8
    174  
     174
    175175endif # VBOX_WITH_WDDM
    176176
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/VBoxMPDriver.cpp

    r46896 r48944  
    559559                bResult = FALSE;
    560560            }
    561                
     561
    562562            break;
    563563        }
  • trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/VBoxMPIOCTL.cpp

    r46896 r48944  
    634634        VBOXMP_WARN_VPS_NOBP(rc);
    635635        if (rc != NO_ERROR)
    636         {   
     636        {
    637637            u32Flags = 0;
    638638        }
  • trunk/src/VBox/Additions/WINNT/SharedFolders/driver/file.c

    r44558 r48944  
    551551    Status = VBoxErrorToNTStatus(vboxRC);
    552552
    553     Log(("VBOXSF: MRxFlush: Returned 0x%08X\n", 
     553    Log(("VBOXSF: MRxFlush: Returned 0x%08X\n",
    554554         Status));
    555555    return Status;
  • trunk/src/VBox/Additions/WINNT/SharedFolders/driver/vbsf.c

    r42154 r48944  
    11851185                    if (pDeviceExtension->wszLocalConnectionName[idx] == NULL)
    11861186                    {
    1187                         Log(("VBOXSF: vbsfCreateConnection: LocalConnectionName at index %d NOT allocated!\n", 
     1187                        Log(("VBOXSF: vbsfCreateConnection: LocalConnectionName at index %d NOT allocated!\n",
    11881188                             idx));
    11891189                        Status = STATUS_INSUFFICIENT_RESOURCES;
  • trunk/src/VBox/Additions/WINNT/SharedFolders/np/vboxmrxnp.cpp

    r46593 r48944  
    259259    }
    260260
    261    
     261
    262262    if (dwStatus == WN_SUCCESS)
    263263    {
     
    733733    if (dwStatus != WN_SUCCESS)
    734734    {
    735         Log(("VBOXNP: NPOpenEnum: Returned error 0x%08X\n", 
     735        Log(("VBOXNP: NPOpenEnum: Returned error 0x%08X\n",
    736736             dwStatus));
    737737        if (pCtx)
     
    860860                    CopyMemory(pDst, RemoteName, cbRemoteName);
    861861                    pDst += cbRemoteName / sizeof(WCHAR);
    862                    
     862
    863863                    pNetResource->lpComment = NULL;
    864864
  • trunk/src/VBox/Additions/WINNT/VBoxCredProv/testcase/tstCredentialProvider.cpp

    r44975 r48944  
    2020                                                    NULL, 0, &authBuffer, &authBufferSize, &(save), 0);
    2121    printf("Test returned %ld\n", dwErr);
    22    
     22
    2323    return dwErr == ERROR_SUCCESS ? 0 : 1;
    2424}
  • trunk/src/VBox/Additions/WINNT/VBoxMMR/dllmain.cpp

    r46593 r48944  
    4242            const PCHAR pc = strrchr(buffer, '\\');
    4343            isWMP = (0 == strcmp(pc + 1, "wmplayer.exe"));
    44            
     44
    4545            if (isWMP)
    4646            {
  • trunk/src/VBox/Additions/WINNT/VBoxMMR/tsmfhook.h

    r44864 r48944  
    1818#pragma once
    1919
    20 // The following ifdef block is the standard way of creating macros which make exporting 
     20// The following ifdef block is the standard way of creating macros which make exporting
    2121// from a DLL simpler. All files within this DLL are compiled with the TSMFHOOK_EXPORTS
    2222// symbol defined on the command line. This symbol should not be defined on any project
    23 // that uses this DLL. This way any other project whose source files include this file see 
     23// that uses this DLL. This way any other project whose source files include this file see
    2424// TSMFHOOK_API functions as being imported from a DLL, whereas this DLL sees symbols
    2525// defined with this macro as being exported.
     
    3535
    3636// {56E95534-F42E-4C79-8EED-B121B4823163}
    37 static const GUID ProviderId = 
     37static const GUID ProviderId =
    3838{ 0x56e95534, 0xf42e, 0x4c79, { 0x8e, 0xed, 0xb1, 0x21, 0xb4, 0x82, 0x31, 0x63 } };
    3939
    4040// {06797744-5A74-4782-B2AB-B86D9F6C7B4A}
    41 static const GUID ChannelOpenCategoryId = 
     41static const GUID ChannelOpenCategoryId =
    4242{ 0x6797744, 0x5a74, 0x4782, { 0xb2, 0xab, 0xb8, 0x6d, 0x9f, 0x6c, 0x7b, 0x4a } };
    4343
    4444// {BF94ED39-9585-4822-B69E-DF19549A664C}
    45 static const GUID ChannelWriteCategoryId = 
     45static const GUID ChannelWriteCategoryId =
    4646{ 0xbf94ed39, 0x9585, 0x4822, { 0xb6, 0x9e, 0xdf, 0x19, 0x54, 0x9a, 0x66, 0x4c } };
    4747
    4848// {95375270-AE5F-423E-A4EB-5AE7FC649CF6}
    49 static const GUID ChannelReadCategoryId = 
     49static const GUID ChannelReadCategoryId =
    5050{ 0x95375270, 0xae5f, 0x423e, { 0xa4, 0xeb, 0x5a, 0xe7, 0xfc, 0x64, 0x9c, 0xf6 } };
    5151
    5252// {01F2A23A-4144-45E6-9933-4668915A1758}
    53 static const GUID ChannelCloseCategoryId = 
     53static const GUID ChannelCloseCategoryId =
    5454{ 0x1f2a23a, 0x4144, 0x45e6, { 0x99, 0x33, 0x46, 0x68, 0x91, 0x5a, 0x17, 0x58 } };
    5555
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