/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool
307 by Suren A. Chilingaryan
Finalyze XML support and provide initial support for views (only descriptions so far)
1
#ifndef _PCILIB_VIEW_ENUM_H
2
#define _PCILIB_VIEW_ENUM_H
3
4
#include <pcilib.h>
5
#include <pcilib/view.h>
6
7
8
typedef struct {
9
    pcilib_view_description_t base;
319 by Suren A. Chilingaryan
Provide register listings in public API
10
    pcilib_register_value_name_t *names;
307 by Suren A. Chilingaryan
Finalyze XML support and provide initial support for views (only descriptions so far)
11
} pcilib_enum_view_description_t;
12
13
14
#ifndef _PCILIB_VIEW_ENUM_C
15
extern const pcilib_view_api_description_t pcilib_enum_view_static_api;
16
extern const pcilib_view_api_description_t pcilib_enum_view_xml_api;
17
#endif /* _PCILIB_VIEW_ENUM_C */
18
19
#endif /* _PCILIB_VIEW_ENUM_H */