ua_log_stdout.h 461 B

12345678910111213141516171819202122
  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_plugin_log.h"
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. UA_EXPORT void
  10. UA_Log_Stdout(UA_LogLevel level, UA_LogCategory category,
  11. const char *msg, va_list args);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif /* UA_LOG_STDOUT_H_ */