ua_log_stdout.h 453 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. #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 UA_Log_Stdout(UA_LogLevel level, UA_LogCategory category, const char *msg, ...);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif /* UA_LOG_STDOUT_H_ */