/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/pcilib.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:
129
129
typedef int (*pcilib_event_callback_t)(pcilib_event_id_t event_id, pcilib_event_info_t *info, void *user);
130
130
typedef int (*pcilib_event_rawdata_callback_t)(pcilib_event_id_t event_id, pcilib_event_info_t *info, pcilib_event_flags_t flags, size_t size, void *data, void *user);
131
131
 
 
132
#ifdef __cplusplus
 
133
extern "C" {
 
134
#endif
 
135
 
132
136
 
133
137
int pcilib_set_logger(pcilib_log_priority_t min_prio, pcilib_logger_t logger, void *arg);
134
138
 
236
240
 */
237
241
int pcilib_grab(pcilib_t *ctx, pcilib_event_t event_mask, size_t *size, void **data, pcilib_timeout_t timeout);
238
242
 
 
243
#ifdef __cplusplus
 
244
}
 
245
#endif
 
246
 
239
247
#endif /* _PCITOOL_PCILIB_H */