ua_log_stdout.h 533 B

12345678910111213141516171819202122232425
  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. *
  4. * Copyright 2016 (c) Fraunhofer IOSB (Author: Julius Pfrommer)
  5. */
  6. #ifndef UA_LOG_STDOUT_H_
  7. #define UA_LOG_STDOUT_H_
  8. #include "ua_plugin_log.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. void UA_EXPORT
  13. UA_Log_Stdout(UA_LogLevel level, UA_LogCategory category,
  14. const char *msg, va_list args);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif /* UA_LOG_STDOUT_H_ */