ua_log_stdout.h 476 B

1234567891011121314151617181920212223
  1. /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  2. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information. */
  3. #ifndef UA_LOG_STDOUT_H_
  4. #define UA_LOG_STDOUT_H_
  5. #include "ua_types.h"
  6. #include "ua_log.h"
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. UA_EXPORT void
  11. UA_Log_Stdout(UA_LogLevel level, UA_LogCategory category,
  12. const char *msg, va_list args);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif /* UA_LOG_STDOUT_H_ */