VirtualBox

Changeset 45356 in vbox for trunk/src/VBox/Additions


Ignore:
Timestamp:
Apr 5, 2013 7:01:27 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
84772
Message:

tabs

Location:
trunk/src/VBox/Additions
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp

    r44529 r45356  
    55
    66/*
    7  * Copyright (C) 2007-2012 Oracle Corporation
     7 * Copyright (C) 2007-2013 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    383383
    384384#elif defined(RT_OS_HAIKU)
    385         /* The ioctl hook in Haiku does take the len parameter when specified,
    386          * so just use it.
    387          */
     385    /* The ioctl hook in Haiku does take the len parameter when specified,
     386     * so just use it. */
    388387    int rc = ioctl((int)g_File, iFunction, pvData, cbData);
    389388    if (RT_LIKELY(rc == 0))
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp

    r44912 r45356  
    55
    66/*
    7  * Copyright (C) 2009-2012 Oracle Corporation
     7 * Copyright (C) 2009-2013 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    393393static dbus_bool_t vboxService_dbus_message_get_args(DBusMessage *message,
    394394                                                     DBusError   *error,
    395                                                      int              first_arg_type,
     395                                                     int first_arg_type,
    396396                                                     ...)
    397397{
  • trunk/src/VBox/Additions/haiku/VBoxTray/VBoxGuestDeskbarView.h

    r43364 r45356  
    55
    66/*
    7  * Copyright (C) 2012 Oracle Corporation
     7 * Copyright (C) 2012-2013 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    7272        virtual ~VBoxGuestDeskbarView();
    7373
    74                 static  BArchivable*   Instantiate(BMessage *data);
     74        static  BArchivable*   Instantiate(BMessage *data);
    7575        virtual status_t       Archive(BMessage *data, bool deep = true) const;
    7676
  • trunk/src/VBox/Additions/haiku/VBoxVideo/driver/driver.cpp

    r43415 r45356  
    55
    66/*
    7  * Copyright (C) 2012 Oracle Corporation
     7 * Copyright (C) 2012 Oracle-2013 Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    114114struct DeviceInfo
    115115{
    116     uint32          openCount;                  /* Count of how many times device has been opened */
    117     uint32          flags;                                      /* Device flags */
    118     area_id         sharedArea;                 /* Area shared between driver and all accelerants */
    119     SharedInfo     *sharedInfo;                 /* Pointer to shared info area memory */
    120     pci_info        pciInfo;                    /* Copy of pci info for this device */
     116    uint32          openCount;              /* Count of how many times device has been opened */
     117    uint32          flags;                  /* Device flags */
     118    area_id         sharedArea;             /* Area shared between driver and all accelerants */
     119    SharedInfo     *sharedInfo;             /* Pointer to shared info area memory */
     120    pci_info        pciInfo;                /* Copy of pci info for this device */
    121121    char            name[B_OS_NAME_LENGTH]; /* Name of device */
    122122};
  • trunk/src/VBox/Additions/linux/drm/vboxvideo.h

    r44529 r45356  
    55
    66/*
    7  * Copyright (C) 2011-2012 Oracle Corporation
     7 * Copyright (C) 2011-2013 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    6868    struct vboxvideo_mode_info  mode_info;
    6969
    70     int                             num_crtc;
     70    int                 num_crtc;
    7171};
    7272
    73 #endif                /* __DRM_VBOXVIDEO_H__ */
     73#endif /* __DRM_VBOXVIDEO_H__ */
  • trunk/src/VBox/Additions/x11/vboxmouse/vboxmouse.c

    r44528 r45356  
    44
    55/*
    6  * Copyright (C) 2006-2012 Oracle Corporation
     6 * Copyright (C) 2006-2013 Oracle Corporation
    77 *
    88 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    117117#elif GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 3
    118118                                 VBoxPtrCtrlProc, GetMotionHistorySize(),
    119                                                                 2 /* Number of axes */
     119                                2 /* Number of axes */
    120120#else
    121121# error Unsupported version of X.Org
  • trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c

    r45000 r45356  
    66
    77/*
    8  * Copyright (C) 2006-2012 Oracle Corporation
     8 * Copyright (C) 2006-2013 Oracle Corporation
    99 *
    1010 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    157157{
    158158    {VBOX_DEVICEID, "vbox"},
    159     {-1,        NULL}
     159    {-1,            NULL}
    160160};
    161161
    162162static PciChipsets VBOXPCIchipsets[] = {
    163163  { VBOX_DEVICEID, VBOX_DEVICEID, RES_SHARED_VGA },
    164   { -1,         -1,                 RES_UNDEFINED },
     164  { -1,            -1,            RES_UNDEFINED },
    165165};
    166166
     
    199199/* No options for now */
    200200static const OptionInfoRec VBOXOptions[] = {
    201     { -1,               NULL,           OPTV_NONE,      {0},    FALSE }
     201    { -1, NULL, OPTV_NONE, {0}, FALSE }
    202202};
    203203
     
    391391    /* We always like modes specified by the user in the configuration
    392392     * file and modes requested by the host, as doing otherwise is likely to
    393         * annoy people. */
     393    * annoy people. */
    394394    if (   !(mode->type & M_T_USERDEF)
    395395        && !(mode->type & M_T_PREFERRED)
     
    576576    0,                          /* Module minor version. Xorg-specific */
    577577    1,                          /* Module patchlevel. Xorg-specific */
    578     ABI_CLASS_VIDEODRV,         /* This is a video driver */
     578    ABI_CLASS_VIDEODRV,         /* This is a video driver */
    579579    ABI_VIDEODRV_VERSION,
    580580    MOD_CLASS_VIDEODRV,
     
    11311131    /* colourmap code */
    11321132    if (!miCreateDefColormap(pScreen))
    1133         return (FALSE);
     1133        return (FALSE);
    11341134
    11351135    if(!xf86HandleColormaps(pScreen, 256, 8, vboxLoadPalette, NULL, 0))
  • trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.h

    r45000 r45356  
    102102#include "xf86Cursor.h"
    103103
    104 #define VBOX_VERSION            4000  /* Why? */
    105 #define VBOX_NAME                     "VBoxVideo"
    106 #define VBOX_DRIVER_NAME          "vboxvideo"
     104#define VBOX_VERSION            4000  /* Why? */
     105#define VBOX_NAME               "VBoxVideo"
     106#define VBOX_DRIVER_NAME        "vboxvideo"
    107107
    108108#ifdef VBOX_DRI
  • trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo_dri.c

    r44528 r45356  
    55
    66/*
    7  * Copyright (C) 2006-2012 Oracle Corporation
     7 * Copyright (C) 2006-2013 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    251251        sprintf(pDRIInfo->busIdString, "PCI:%d:%d:%d",
    252252            ((pciConfigPtr)pVBox->pciInfo->thisCard)->busnum,
    253                 ((pciConfigPtr)pVBox->pciInfo->thisCard)->devnum,
     253            ((pciConfigPtr)pVBox->pciInfo->thisCard)->devnum,
    254254            ((pciConfigPtr)pVBox->pciInfo->thisCard)->funcnum);
    255255#endif
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