Changeset 35881 in vbox
- Timestamp:
- Feb 7, 2011 10:19:31 PM (14 years ago)
- Location:
- trunk/src/VBox/Additions/x11/vboxvideo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/vboxvideo/undefined
r35784 r35881 19 19 VBEGetVBEMode 20 20 VBESaveRestore 21 VBESetDisplayStart22 VBESetGetPaletteData23 21 VBESetVBEMode 24 22 XNFcalloc … … 92 90 open 93 91 open64 94 pciFindFirst95 pciReadLong96 92 pciTag 97 93 pci_device_map_range 98 pci_device_next99 pci_device_probe100 94 pci_device_unmap_range 101 pci_id_match_iterator_create102 pci_iterator_destroy103 95 posix_memalign 104 96 pthread_sigmask … … 136 128 vgaHWGetHWRec 137 129 vgaHWGetIndex 138 vgaHWHandleColormaps139 130 vgaHWMapMem 140 131 vgaHWRestoreFonts … … 143 134 write 144 135 xf86AddDriver 145 xf86CVTMode146 xf86CheckModeForMonitor147 xf86CollectOptions148 136 xf86ConfigPciEntity 149 137 xf86CreateCursorInfoRec 150 138 xf86CrtcConfigInit 151 xf86CrtcConfigPrivateIndex152 139 xf86CrtcCreate 153 140 xf86CrtcScreenInit … … 156 143 xf86DPMSSet 157 144 xf86DestroyCursorInfoRec 158 xf86DiDGAInit159 145 xf86DrvMsg 160 146 xf86GetEntityInfo … … 169 155 xf86LoaderCheckSymbol 170 156 xf86LoaderReqSymLists 171 xf86MapDomainMemory172 157 xf86MapPciMem 173 158 xf86MatchDevice … … 180 165 xf86PrintDepthBpp 181 166 xf86PrintModes 182 xf86ProcessOptions183 167 xf86SaveScreen 184 168 xf86Screens … … 195 179 xf86SetWeight 196 180 xf86ShowUnusedOptions 197 xf86SlowBcopy198 181 xf86UnMapVidMem 199 182 xf86errno 200 183 xf86isspace 201 xf86sprintf202 xf86snprintf203 184 xf86strtoul -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.c
r35849 r35881 199 199 200 200 static const char *shadowfbSymbols[] = { 201 "ShadowFBInit2",202 NULL201 "ShadowFBInit2", 202 NULL 203 203 }; 204 204 205 205 static const char *vbeSymbols[] = { 206 206 "VBEExtendedInit", 207 "VBEFindSupportedDepths",208 "VBEGetModeInfo",209 "VBEGetVBEInfo",210 207 "VBEGetVBEMode", 211 "VBEPrintModes",212 208 "VBESaveRestore", 213 "VBESetDisplayStart",214 "VBESetGetDACPaletteFormat",215 "VBESetGetLogicalScanlineLength",216 "VBESetGetPaletteData",217 "VBESetModeNames",218 "VBESetModeParameters",219 209 "VBESetVBEMode", 220 "VBEValidateModes",221 "vbeDoEDID",222 "vbeFree",223 210 NULL 224 211 }; … … 232 219 static const char *vgahwSymbols[] = { 233 220 "vgaHWGetHWRec", 234 "vgaHW HandleColormaps",221 "vgaHWGetIndex", 235 222 "vgaHWFreeHWRec", 236 223 "vgaHWMapMem", … … 238 225 "vgaHWSaveFonts", 239 226 "vgaHWRestoreFonts", 240 "vgaHWGetIndex",241 "vgaHWSaveScreen",242 "vgaHWDPMSSet",243 227 NULL 244 228 };
Note:
See TracChangeset
for help on using the changeset viewer.