logger_stdout.h 460 B

123456789101112131415161718192021222324
  1. /*
  2. * This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  3. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  4. */
  5. #ifndef LOGGER_STDOUT_H_
  6. #define LOGGER_STDOUT_H_
  7. #include "ua_types.h"
  8. #include "ua_log.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /** Initialises the logger for the current thread. */
  13. UA_EXPORT UA_Logger Logger_Stdout_new(void);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* LOGGER_STDOUT_H_ */