]> mj.ucw.cz Git - pciutils.git/blobdiff - lib/internal.h
pciids, not ids.
[pciutils.git] / lib / internal.h
index b049f3d1c9bbea79ce9ae0730a5134e00d321543..d3a87b18c5e0b7c3dbf34e47acef40381e2f982b 100644 (file)
@@ -1,15 +1,22 @@
 /*
- *     $Id: internal.h,v 1.3 1999/07/20 14:01:32 mj Exp $
+ *     $Id: internal.h,v 1.7 2002/12/26 19:28:33 mj Exp $
  *
  *     The PCI Library -- Internal Include File
  *
- *     Copyright (c) 1997--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
+ *     Copyright (c) 1997--2000 Martin Mares <mj@ucw.cz>
  *
  *     Can be freely distributed and used under the terms of the GNU GPL.
  */
 
 #include "pci.h"
 
+#ifdef __GNUC__
+#define UNUSED __attribute__((unused))
+#else
+#define UNUSED
+#define inline
+#endif
+
 #ifdef HAVE_PM_LINUX_BYTEORDER_H
 
 #include <asm/byteorder.h>
@@ -71,6 +78,7 @@ struct pci_methods {
   void (*cleanup_dev)(struct pci_dev *);
 };
 
+void pci_generic_scan_bus(struct pci_access *, byte *busmap, int bus);
 void pci_generic_scan(struct pci_access *);
 int pci_generic_fill_info(struct pci_dev *, int flags);
 int pci_generic_block_read(struct pci_dev *, int pos, byte *buf, int len);
@@ -83,6 +91,4 @@ struct pci_dev *pci_alloc_dev(struct pci_access *);
 int pci_link_dev(struct pci_access *, struct pci_dev *);
 
 extern struct pci_methods pm_intel_conf1, pm_intel_conf2, pm_linux_proc,
-  pm_syscalls, pm_fbsd_device, pm_dump;
-
-#define UNUSED __attribute__((unused))
+  pm_syscalls, pm_fbsd_device, pm_aix_device, pm_nbsd_libpci, pm_dump;