/alps/ipecamera

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

« back to all changes in this revision

Viewing changes to register.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-27 00:28:57 UTC
  • Revision ID: csa@suren.me-20150427002857-82fk6r3e8rfgy4wr
First stand-alone ipecamera implementation

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _PCILIB_REGISTER_H
2
 
#define _PCILIB_REGISTER_H
3
 
 
4
 
#include "pcilib.h"
5
 
 
6
 
struct pcilib_protocol_description_s {
7
 
    int (*read)(pcilib_t *ctx, pcilib_register_bank_description_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t *value);
8
 
    int (*write)(pcilib_t *ctx, pcilib_register_bank_description_t *bank, pcilib_register_addr_t addr, pcilib_register_value_t value);
9
 
};
10
 
 
11
 
    // we don't copy strings, they should be statically allocated
12
 
int pcilib_add_registers(pcilib_t *ctx, size_t n, pcilib_register_description_t *registers);
13
 
 
14
 
#endif /* _PCILIB_REGISTER_H */