Changeset 45356 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Apr 5, 2013 7:01:27 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84772
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp
r44529 r45356 5 5 6 6 /* 7 * Copyright (C) 2007-201 2Oracle Corporation7 * Copyright (C) 2007-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 383 383 384 384 #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. */ 388 387 int rc = ioctl((int)g_File, iFunction, pvData, cbData); 389 388 if (RT_LIKELY(rc == 0)) -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceVMInfo.cpp
r44912 r45356 5 5 6 6 /* 7 * Copyright (C) 2009-201 2Oracle Corporation7 * Copyright (C) 2009-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 393 393 static dbus_bool_t vboxService_dbus_message_get_args(DBusMessage *message, 394 394 DBusError *error, 395 int 395 int first_arg_type, 396 396 ...) 397 397 { -
trunk/src/VBox/Additions/haiku/VBoxTray/VBoxGuestDeskbarView.h
r43364 r45356 5 5 6 6 /* 7 * Copyright (C) 2012 Oracle Corporation7 * Copyright (C) 2012-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 72 72 virtual ~VBoxGuestDeskbarView(); 73 73 74 74 static BArchivable* Instantiate(BMessage *data); 75 75 virtual status_t Archive(BMessage *data, bool deep = true) const; 76 76 -
trunk/src/VBox/Additions/haiku/VBoxVideo/driver/driver.cpp
r43415 r45356 5 5 6 6 /* 7 * Copyright (C) 2012 Oracle Corporation7 * Copyright (C) 2012 Oracle-2013 Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 114 114 struct DeviceInfo 115 115 { 116 uint32 openCount; 117 uint32 flags; 118 area_id sharedArea; 119 SharedInfo *sharedInfo; 120 pci_info pciInfo; 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 */ 121 121 char name[B_OS_NAME_LENGTH]; /* Name of device */ 122 122 }; -
trunk/src/VBox/Additions/linux/drm/vboxvideo.h
r44529 r45356 5 5 6 6 /* 7 * Copyright (C) 2011-201 2Oracle Corporation7 * Copyright (C) 2011-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 68 68 struct vboxvideo_mode_info mode_info; 69 69 70 int 70 int num_crtc; 71 71 }; 72 72 73 #endif 73 #endif /* __DRM_VBOXVIDEO_H__ */ -
trunk/src/VBox/Additions/x11/vboxmouse/vboxmouse.c
r44528 r45356 4 4 5 5 /* 6 * Copyright (C) 2006-201 2Oracle Corporation6 * Copyright (C) 2006-2013 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 117 117 #elif GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 3 118 118 VBoxPtrCtrlProc, GetMotionHistorySize(), 119 119 2 /* Number of axes */ 120 120 #else 121 121 # error Unsupported version of X.Org -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c
r45000 r45356 6 6 7 7 /* 8 * Copyright (C) 2006-201 2Oracle Corporation8 * Copyright (C) 2006-2013 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 157 157 { 158 158 {VBOX_DEVICEID, "vbox"}, 159 {-1, 159 {-1, NULL} 160 160 }; 161 161 162 162 static PciChipsets VBOXPCIchipsets[] = { 163 163 { VBOX_DEVICEID, VBOX_DEVICEID, RES_SHARED_VGA }, 164 { -1, -1,RES_UNDEFINED },164 { -1, -1, RES_UNDEFINED }, 165 165 }; 166 166 … … 199 199 /* No options for now */ 200 200 static const OptionInfoRec VBOXOptions[] = { 201 { -1, NULL, OPTV_NONE, {0},FALSE }201 { -1, NULL, OPTV_NONE, {0}, FALSE } 202 202 }; 203 203 … … 391 391 /* We always like modes specified by the user in the configuration 392 392 * file and modes requested by the host, as doing otherwise is likely to 393 393 * annoy people. */ 394 394 if ( !(mode->type & M_T_USERDEF) 395 395 && !(mode->type & M_T_PREFERRED) … … 576 576 0, /* Module minor version. Xorg-specific */ 577 577 1, /* Module patchlevel. Xorg-specific */ 578 ABI_CLASS_VIDEODRV, 578 ABI_CLASS_VIDEODRV, /* This is a video driver */ 579 579 ABI_VIDEODRV_VERSION, 580 580 MOD_CLASS_VIDEODRV, … … 1131 1131 /* colourmap code */ 1132 1132 if (!miCreateDefColormap(pScreen)) 1133 1133 return (FALSE); 1134 1134 1135 1135 if(!xf86HandleColormaps(pScreen, 256, 8, vboxLoadPalette, NULL, 0)) -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.h
r45000 r45356 102 102 #include "xf86Cursor.h" 103 103 104 #define VBOX_VERSION 105 #define VBOX_NAME 106 #define VBOX_DRIVER_NAME 104 #define VBOX_VERSION 4000 /* Why? */ 105 #define VBOX_NAME "VBoxVideo" 106 #define VBOX_DRIVER_NAME "vboxvideo" 107 107 108 108 #ifdef VBOX_DRI -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo_dri.c
r44528 r45356 5 5 6 6 /* 7 * Copyright (C) 2006-201 2Oracle Corporation7 * Copyright (C) 2006-2013 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 251 251 sprintf(pDRIInfo->busIdString, "PCI:%d:%d:%d", 252 252 ((pciConfigPtr)pVBox->pciInfo->thisCard)->busnum, 253 253 ((pciConfigPtr)pVBox->pciInfo->thisCard)->devnum, 254 254 ((pciConfigPtr)pVBox->pciInfo->thisCard)->funcnum); 255 255 #endif
Note:
See TracChangeset
for help on using the changeset viewer.