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

  • Committer: Suren A. Chilingaryan
  • Date: 2015-06-22 16:32:27 UTC
  • Revision ID: csa@suren.me-20150622163227-xrajwpfxhequsi7j
Keep C++ compilers happy

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    PCILIB_DEBUG_BUFFER_MKDIR = 2
41
41
} pcilib_debug_buffer_flags_t; 
42
42
 
 
43
 
 
44
#ifdef __cplusplus
 
45
extern "C" {
 
46
#endif
 
47
 
43
48
void pcilib_debug_message(const char *function, const char *file, int line, pcilib_log_flags_t flags, const char *format, ...);
44
49
void pcilib_debug_data_buffer(const char *function, size_t size, void *buffer, pcilib_debug_buffer_flags_t flags, const char *file, ...);
45
50
 
46
51
 
 
52
#ifdef __cplusplus
 
53
}
 
54
#endif
 
55
 
 
56
 
47
57
#endif /* _PCILIB_DEBUG_H */