/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 protocols/default.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-26 23:54:44 UTC
  • Revision ID: csa@suren.me-20150426235444-l9kvuvvfb2ovg8h1
Further adjustments to get ready for independent event plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
int pcilib_default_read(pcilib_t *ctx, pcilib_register_bank_context_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t *value);
8
8
int pcilib_default_write(pcilib_t *ctx, pcilib_register_bank_context_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t value);
9
9
 
10
 
#ifdef _PCILIB_CONFIG_C
 
10
#ifdef _PCILIB_EXPORT_C
11
11
const pcilib_register_protocol_api_description_t pcilib_default_protocol_api =
12
12
    { NULL, NULL, pcilib_default_read, pcilib_default_write };
13
 
#endif /* _PCILIB_CONFIG_C */
 
13
#endif /* _PCILIB_EXPORT_C */
14
14
 
15
15
#endif /* _PCILIB_DEFAULT_H */