/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 pcilib/error.c

  • Committer: Suren A. Chilingaryan
  • Date: 2016-02-23 06:20:33 UTC
  • mfrom: (346.1.18 pcitool)
  • Revision ID: csa@suren.me-20160223062033-mz8qkpm1a2oioveb
Merge Python scripting support from Vasiliy Chernov

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
 
77
77
    return 0;
78
78
}
 
79
 
 
80
pcilib_logger_t pcilib_get_logger() {
 
81
    return pcilib_logger;
 
82
}
 
83
 
 
84
pcilib_log_priority_t pcilib_get_log_level() {
 
85
    return pcilib_logger_min_prio;
 
86
}
 
87
 
 
88
void* pcilib_get_logger_context() {
 
89
    return pcilib_logger_argument;
 
90
}