export.h 773 B

123456789101112131415161718192021222324
  1. #ifndef _PCILIB_EXPORT_H
  2. #define _PCILIB_EXPORT_H
  3. #include <pcilib/register.h>
  4. #include <pcilib/bank.h>
  5. #include <pcilib/dma.h>
  6. extern const char *pcilib_data_types[];
  7. extern const pcilib_register_protocol_description_t pcilib_standard_register_protocols[];
  8. extern const pcilib_register_bank_description_t pcilib_standard_register_banks[];
  9. extern const pcilib_register_description_t pcilib_standard_registers[];
  10. extern const pcilib_dma_description_t pcilib_dma[];
  11. extern const pcilib_register_protocol_api_description_t pcilib_default_protocol_api;
  12. extern const pcilib_register_bank_description_t pcilib_property_register_bank;
  13. extern const pcilib_dma_description_t pcilib_ipedma;
  14. extern const pcilib_dma_description_t pcilib_nwldma;
  15. #endif /* _PCILIB_EXPORT_H */