ua_log_stdout.h 496 B

123456789101112131415161718192021
  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. _UA_BEGIN_DECLS
  10. void UA_EXPORT
  11. UA_Log_Stdout(UA_LogLevel level, UA_LogCategory category,
  12. const char *msg, va_list args);
  13. _UA_END_DECLS
  14. #endif /* UA_LOG_STDOUT_H_ */