- Timestamp:
- Feb 6, 2007 4:26:33 AM (18 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/HostUSBImpl.cpp
r1 r676 88 88 #ifdef __LINUX__ 89 89 mUSBProxyService = new USBProxyServiceLinux (this); 90 #elif defined __WIN 32__90 #elif defined __WIN__ 91 91 mUSBProxyService = new USBProxyServiceWin32 (this); 92 92 */ -
trunk/src/VBox/Frontends/VBoxBFE/Logging.h
r1 r676 56 56 #if defined(DEBUG) || defined(LOG_ENABLED) 57 57 # define V_DEBUG(m) V_LOG(m) 58 #if defined(__WIN 32__)58 #if defined(__WIN__) 59 59 # define V_LOG(m) \ 60 60 do { Log (("[MAIN:%05u] ", GetCurrentThreadId())); Log (m); Log (("\n")); } while (0) -
trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.cpp
r146 r676 51 51 LogFlow(("SDLFramebuffer::SDLFramebuffer\n")); 52 52 53 #if defined (__WIN 32__)53 #if defined (__WIN__) 54 54 refcnt = 0; 55 55 #endif … … 343 343 { 344 344 sdlFlags |= SDL_FULLSCREEN; 345 #ifdef __WIN 32__345 #ifdef __WIN__ 346 346 /* this flag causes a crash on Windows, mScreen->pixels is NULL */ 347 347 sdlFlags &= ~SDL_HWSURFACE; -
trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.h
r146 r676 98 98 uint32_t mLabelHeight; 99 99 #endif 100 #ifdef __WIN 32__100 #ifdef __WIN__ 101 101 long refcnt; 102 102 #endif -
trunk/src/VBox/Frontends/VBoxBFE/USBProxyService.h
r1 r676 215 215 216 216 217 #ifdef __WIN 32__217 #ifdef __WIN__ 218 218 /** 219 * The Win32 hosted USB Proxy Service.219 * The Win32/Win64 hosted USB Proxy Service. 220 220 */ 221 221 class USBProxyServiceWin32 : public USBProxyService -
trunk/src/VBox/Frontends/VBoxBFE/VBoxBFE.cpp
r1 r676 1583 1583 rc = CFGMR3InsertString(pLunL0, "Driver", "AUDIO"); CHECK_RC(); 1584 1584 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); CHECK_RC(); 1585 #ifdef __WIN 32__1585 #ifdef __WIN__ 1586 1586 rc = CFGMR3InsertString(pCfg, "AudioDriver", "winmm"); CHECK_RC(); 1587 #else /* !__WIN 32__ */1587 #else /* !__WIN__ */ 1588 1588 rc = CFGMR3InsertString(pCfg, "AudioDriver", "oss"); CHECK_RC(); 1589 #endif /* !__WIN 32__ */1589 #endif /* !__WIN__ */ 1590 1590 } 1591 1591
Note:
See TracChangeset
for help on using the changeset viewer.