/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.h

  • 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:
40
40
void pcilib_log_message(const char *file, int line, pcilib_log_flags_t flags, pcilib_log_priority_t prio, const char *msg, ...);
41
41
void pcilib_log_vmessage(const char *file, int line, pcilib_log_flags_t flags, pcilib_log_priority_t prio, const char *msg, va_list va);
42
42
 
 
43
/**
 
44
 * Gets current logger function.
 
45
 */
 
46
pcilib_logger_t pcilib_get_logger();
 
47
 
 
48
/**
 
49
 * Gets current logger min priority.
 
50
 */
 
51
pcilib_log_priority_t pcilib_get_log_level();
 
52
 
 
53
/**
 
54
 * Gets current logger argument.
 
55
 */
 
56
void* pcilib_get_logger_context();
43
57
 
44
58
#ifdef __cplusplus
45
59
}