/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 config.h

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-20 20:01:04 UTC
  • Revision ID: csa@suren.me-20150420200104-b5xny65io8lvoz3w
Big redign of model structures

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _PCILIB_CONFIG_H
 
2
#define _PCILIB_CONFIG_H
 
3
 
 
4
 
 
5
#include "register.h"
 
6
#include "dma.h"
 
7
 
 
8
/*
 
9
typedef struct {
 
10
    const char *alias;
 
11
    pcilib_register_protocol_description_t *protocol;
 
12
} pcilib_register_protocol_alias_t;
 
13
 
 
14
 
 
15
typedef struct {
 
16
    const char *alias;
 
17
    pcilib_dma_description_t dma;
 
18
} pcilib_dma_alias_t;
 
19
 
 
20
extern pcilib_register_protocol_alias_t pcilib_protocols[];
 
21
extern pcilib_dma_alias_t pcilib_dma[];
 
22
*/
 
23
 
 
24
extern const pcilib_register_protocol_description_t pcilib_protocols[];
 
25
extern const pcilib_dma_description_t pcilib_dma[];
 
26
 
 
27
 
 
28
//extern const pcilib_register_protocol_description_t *pcilib_protocol_default;
 
29
 
 
30
#endif /* _PCILIB_CONFIG_H */