env.h 346 B

123456789101112131415161718192021
  1. #ifndef _PCILIB_ENV_H
  2. #define _PCILIB_ENV_H
  3. typedef enum {
  4. PCILIB_DEBUG_DMA_ENV,
  5. PCILIB_DEBUG_MISSING_EVENTS_ENV,
  6. PCILIB_DEBUG_VIEWS_ENV,
  7. PCILIB_MAX_ENV
  8. } pcilib_env_t;
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. const char *pcilib_getenv(pcilib_env_t env, const char *var);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* _PCILIB_ENV_H */