/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: Vasilii Chernov
  • Date: 2016-02-11 11:00:54 UTC
  • mto: This revision was merged to the branch mainline in revision 353.
  • Revision ID: vchernov@inr.ru-20160211110054-h6x2oxdx1dqaekhe
Change error logging method in Python wrap. Move functions, that converts values between PyObject and pcilib_value_t to py.c

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
pcilib_log_priority_t pcilib_get_logger_min_prio() {
 
84
        return pcilib_logger_min_prio;
 
85
}
 
86
void* pcilib_get_logger_argument() {
 
87
        return pcilib_logger_argument;
 
88
}
 
89