Changeset 26853 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 26, 2010 1:59:35 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58131
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/SDLConsole.cpp
r26834 r26853 293 293 case SDL_MOUSEMOTION: 294 294 { 295 boolfMouseAbsolute;295 BOOL fMouseAbsolute; 296 296 gMouse->COMGETTER(AbsoluteSupported)(&fMouseAbsolute); 297 297 if (mfInputGrab || fMouseAbsolute) … … 306 306 case SDL_MOUSEBUTTONUP: 307 307 { 308 boolfMouseAbsolute;308 BOOL fMouseAbsolute; 309 309 gMouse->COMGETTER(AbsoluteSupported)(&fMouseAbsolute); 310 310 SDL_MouseButtonEvent *bev = &ev->button; … … 1157 1157 void SDLConsole::inputGrabStart() 1158 1158 { 1159 boolfNeedsHostCursor;1159 BOOL fNeedsHostCursor; 1160 1160 gMouse->COMGETTER(NeedsHostCursor)(&fNeedsHostCursor); 1161 1161 #ifdef RT_OS_DARWIN … … 1176 1176 void SDLConsole::inputGrabEnd() 1177 1177 { 1178 boolfNeedsHostCursor;1178 BOOL fNeedsHostCursor; 1179 1179 gMouse->COMGETTER(NeedsHostCursor)(&fNeedsHostCursor); 1180 1180 SDL_WM_GrabInput(SDL_GRAB_OFF); … … 1201 1201 int x, y, state, buttons; 1202 1202 bool abs; 1203 boolfMouseAbsolute;1204 boolfNeedsHostCursor;1203 BOOL fMouseAbsolute; 1204 BOOL fNeedsHostCursor; 1205 1205 1206 1206 gMouse->COMGETTER(AbsoluteSupported)(&fMouseAbsolute); … … 1353 1353 * don't do anything if there are no guest additions loaded (anymore) 1354 1354 */ 1355 boolfMouseAbsolute;1355 BOOL fMouseAbsolute; 1356 1356 gMouse->COMGETTER(AbsoluteSupported)(&fMouseAbsolute); 1357 1357 if (!fMouseAbsolute) -
trunk/src/VBox/Frontends/VBoxBFE/VirtualBoxBase.h
r25371 r26853 40 40 #include <list> 41 41 #include <map> 42 43 // defines 44 //////////////////////////////////////////////////////////////////////////////// 45 46 #define VBOX_E_OBJECT_NOT_FOUND 0x80BB0001 47 #define VBOX_E_INVALID_VM_STATE 0x80BB0002 48 #define VBOX_E_VM_ERROR 0x80BB0003 49 #define VBOX_E_FILE_ERROR 0x80BB0004 50 #define VBOX_E_IPRT_ERROR 0x80BB0005 51 #define VBOX_E_PDM_ERROR 0x80BB0006 52 #define VBOX_E_INVALID_OBJECT_STATE 0x80BB0007 53 #define VBOX_E_HOST_ERROR 0x80BB0008 54 #define VBOX_E_NOT_SUPPORTED 0x80BB0009 55 #define VBOX_E_XML_ERROR 0x80BB000A 56 #define VBOX_E_INVALID_SESSION_STATE 0x80BB000B 57 #define VBOX_E_OBJECT_IN_USE 0x80BB000C 42 58 43 59 // macros and inlines
Note:
See TracChangeset
for help on using the changeset viewer.