/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcilib/pci.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-06-22 16:32:27 UTC
  • Revision ID: csa@suren.me-20150622163227-xrajwpfxhequsi7j
Keep C++ compilers happy

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
#endif /* PCILIB_FILE_IO */
76
76
};
77
77
 
 
78
#ifdef __cplusplus
 
79
extern "C" {
 
80
#endif
 
81
 
78
82
pcilib_context_t *pcilib_get_implementation_context(pcilib_t *ctx);
79
83
const pcilib_board_info_t *pcilib_get_board_info(pcilib_t *ctx);
80
84
const pcilib_pcie_link_info_t *pcilib_get_pcie_link_info(pcilib_t *ctx);
82
86
int pcilib_map_register_space(pcilib_t *ctx);
83
87
int pcilib_map_data_space(pcilib_t *ctx, uintptr_t addr);
84
88
 
 
89
#ifdef __cplusplus
 
90
}
 
91
#endif
 
92
 
85
93
#endif /* _PCITOOL_PCI_H */