VirtualBox

Changeset 676 in vbox for trunk


Ignore:
Timestamp:
Feb 6, 2007 4:26:33 AM (18 years ago)
Author:
vboxsync
Message:

WIN32 -> WIN

Location:
trunk/src/VBox/Frontends/VBoxBFE
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxBFE/HostUSBImpl.cpp

    r1 r676  
    8888#ifdef __LINUX__
    8989    mUSBProxyService = new USBProxyServiceLinux (this);
    90 #elif defined __WIN32__
     90#elif defined __WIN__
    9191    mUSBProxyService = new USBProxyServiceWin32 (this);
    9292*/
  • trunk/src/VBox/Frontends/VBoxBFE/Logging.h

    r1 r676  
    5656#if defined(DEBUG) || defined(LOG_ENABLED)
    5757#   define V_DEBUG(m)           V_LOG(m)
    58 #if defined(__WIN32__)
     58#if defined(__WIN__)
    5959#   define V_LOG(m)             \
    6060    do { Log (("[MAIN:%05u] ", GetCurrentThreadId())); Log (m); Log (("\n")); } while (0)
  • trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.cpp

    r146 r676  
    5151    LogFlow(("SDLFramebuffer::SDLFramebuffer\n"));
    5252
    53 #if defined (__WIN32__)
     53#if defined (__WIN__)
    5454    refcnt = 0;
    5555#endif
     
    343343    {
    344344        sdlFlags |= SDL_FULLSCREEN;
    345 #ifdef __WIN32__
     345#ifdef __WIN__
    346346        /* this flag causes a crash on Windows, mScreen->pixels is NULL */
    347347        sdlFlags &= ~SDL_HWSURFACE;
  • trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.h

    r146 r676  
    9898    uint32_t mLabelHeight;
    9999#endif
    100 #ifdef __WIN32__
     100#ifdef __WIN__
    101101    long refcnt;
    102102#endif
  • trunk/src/VBox/Frontends/VBoxBFE/USBProxyService.h

    r1 r676  
    215215
    216216
    217 #ifdef __WIN32__
     217#ifdef __WIN__
    218218/**
    219  * The Win32 hosted USB Proxy Service.
     219 * The Win32/Win64 hosted USB Proxy Service.
    220220 */
    221221class USBProxyServiceWin32 : public USBProxyService
  • trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp

    r1 r676  
    15831583        rc = CFGMR3InsertString(pLunL0, "Driver",               "AUDIO");           CHECK_RC();
    15841584        rc = CFGMR3InsertNode(pLunL0,   "Config", &pCfg);                           CHECK_RC();
    1585 #ifdef __WIN32__
     1585#ifdef __WIN__
    15861586        rc = CFGMR3InsertString(pCfg, "AudioDriver", "winmm");                      CHECK_RC();
    1587 #else /* !__WIN32__ */
     1587#else /* !__WIN__ */
    15881588        rc = CFGMR3InsertString(pCfg, "AudioDriver", "oss");                        CHECK_RC();
    1589 #endif /* !__WIN32__ */
     1589#endif /* !__WIN__ */
    15901590    }
    15911591
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