/alps/pcitool

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcilib/bar.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:
1
1
#ifndef _PCILIB_BAR_H
2
2
#define _PCILIB_BAR_H
3
3
 
 
4
#ifdef __cplusplus
 
5
extern "C" {
 
6
#endif
 
7
 
4
8
pcilib_bar_t pcilib_detect_bar(pcilib_t *ctx, uintptr_t addr, size_t size);
5
9
int pcilib_detect_address(pcilib_t *ctx, pcilib_bar_t *bar, uintptr_t *addr, size_t size);
6
10
 
 
11
 
 
12
#ifdef __cplusplus
 
13
}
 
14
#endif
 
15
 
7
16
#endif /* _PCILIB_BAR_H */