VirtualBox

Changeset 26853 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Feb 26, 2010 1:59:35 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
58131
Message:

VBoxBFE: Attempt to fix burn caused by r58109.

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

Legend:

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

    r26834 r26853  
    293293        case SDL_MOUSEMOTION:
    294294        {
    295             bool fMouseAbsolute;
     295            BOOL fMouseAbsolute;
    296296            gMouse->COMGETTER(AbsoluteSupported)(&fMouseAbsolute);
    297297            if (mfInputGrab || fMouseAbsolute)
     
    306306        case SDL_MOUSEBUTTONUP:
    307307        {
    308             bool fMouseAbsolute;
     308            BOOL fMouseAbsolute;
    309309            gMouse->COMGETTER(AbsoluteSupported)(&fMouseAbsolute);
    310310            SDL_MouseButtonEvent *bev = &ev->button;
     
    11571157void SDLConsole::inputGrabStart()
    11581158{
    1159     bool fNeedsHostCursor;
     1159    BOOL fNeedsHostCursor;
    11601160    gMouse->COMGETTER(NeedsHostCursor)(&fNeedsHostCursor);
    11611161#ifdef RT_OS_DARWIN
     
    11761176void SDLConsole::inputGrabEnd()
    11771177{
    1178     bool fNeedsHostCursor;
     1178    BOOL fNeedsHostCursor;
    11791179    gMouse->COMGETTER(NeedsHostCursor)(&fNeedsHostCursor);
    11801180    SDL_WM_GrabInput(SDL_GRAB_OFF);
     
    12011201    int x, y, state, buttons;
    12021202    bool abs;
    1203     bool fMouseAbsolute;
    1204     bool fNeedsHostCursor;
     1203    BOOL fMouseAbsolute;
     1204    BOOL fNeedsHostCursor;
    12051205
    12061206    gMouse->COMGETTER(AbsoluteSupported)(&fMouseAbsolute);
     
    13531353     * don't do anything if there are no guest additions loaded (anymore)
    13541354     */
    1355     bool fMouseAbsolute;
     1355    BOOL fMouseAbsolute;
    13561356    gMouse->COMGETTER(AbsoluteSupported)(&fMouseAbsolute);
    13571357    if (!fMouseAbsolute)
  • trunk/src/VBox/Frontends/VBoxBFE/VirtualBoxBase.h

    r25371 r26853  
    4040#include <list>
    4141#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
    4258
    4359// macros and inlines
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette