/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/bank.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:
86
86
    const pcilib_register_protocol_api_description_t *api;                      /**< API functions */
87
87
};
88
88
 
 
89
#ifdef __cplusplus
 
90
extern "C" {
 
91
#endif
 
92
 
89
93
    // we don't copy strings, they should be statically allocated
90
94
int pcilib_init_register_banks(pcilib_t *ctx);
91
95
void pcilib_free_register_banks(pcilib_t *ctx);
102
106
pcilib_register_protocol_t pcilib_find_register_protocol_by_name(pcilib_t *ctx, const char *name);
103
107
pcilib_register_protocol_t pcilib_find_register_protocol(pcilib_t *ctx, const char *name);
104
108
 
 
109
#ifdef __cplusplus
 
110
}
 
111
#endif
 
112
 
105
113
#endif /* _PCILIB_BANK_H */