summaryrefslogtreecommitdiffstats
path: root/pcilib/env.h
blob: 880e71157629466a5379409c5b959aa8b162e751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _PCILIB_ENV_H
#define _PCILIB_ENV_H

typedef enum {
    PCILIB_DEBUG_DMA_ENV,
    PCILIB_DEBUG_MISSING_EVENTS_ENV,
    PCILIB_DEBUG_VIEWS_ENV,
    PCILIB_MAX_ENV
} pcilib_env_t;

#ifdef __cplusplus
extern "C" {
#endif

const char *pcilib_getenv(pcilib_env_t env, const char *var);

#ifdef __cplusplus
}
#endif

#endif /* _PCILIB_ENV_H */