VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/xf86PciData.h@ 33428

Last change on this file since 33428 was 25078, checked in by vboxsync, 15 years ago

Additions/x11/x11include: exported and set eol-style on new headers

  • Property svn:eol-style set to native
File size: 2.7 KB
Line 
1
2/*
3 * Copyright (c) 2000-2002 by The XFree86 Project, Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Except as contained in this notice, the name of the copyright holder(s)
24 * and author(s) shall not be used in advertising or otherwise to promote
25 * the sale, use or other dealings in this Software without prior written
26 * authorization from the copyright holder(s) and author(s).
27 */
28
29#ifdef HAVE_XORG_CONFIG_H
30#include <xorg-config.h>
31#endif
32
33#ifndef PCI_DATA_H_
34#define PCI_DATA_H_
35
36#define NOVENDOR 0xFFFF
37#define NODEVICE 0xFFFF
38#define NOSUBSYS 0xFFFF
39
40typedef Bool (*ScanPciSetupProcPtr)(void);
41typedef void (*ScanPciCloseProcPtr)(void);
42typedef int (*ScanPciFindByDeviceProcPtr)(
43 unsigned short vendor, unsigned short device,
44 unsigned short svendor, unsigned short subsys,
45 const char **vname, const char **dname,
46 const char **svname, const char **sname);
47typedef int (*ScanPciFindBySubsysProcPtr)(
48 unsigned short svendor, unsigned short subsys,
49 const char **svname, const char **sname);
50
51/*
52 * Whoever loads this module needs to define these and initialise them
53 * after loading.
54 */
55extern ScanPciSetupProcPtr xf86SetupPciIds;
56extern ScanPciCloseProcPtr xf86ClosePciIds;
57extern ScanPciFindByDeviceProcPtr xf86FindPciNamesByDevice;
58extern ScanPciFindBySubsysProcPtr xf86FindPciNamesBySubsys;
59
60Bool ScanPciSetupPciIds(void);
61void ScanPciClosePciIds(void);
62int ScanPciFindPciNamesByDevice(unsigned short vendor, unsigned short device,
63 unsigned short svendor, unsigned short subsys,
64 const char **vname, const char **dname,
65 const char **svname, const char **sname);
66int ScanPciFindPciNamesBySubsys(unsigned short svendor, unsigned short subsys,
67 const char **svname, const char **sname);
68
69#endif
Note: See TracBrowser for help on using the repository browser.

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