logger_stdout.h 391 B

12345678910111213141516
  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. /** Initialises the logger for the current thread. */
  10. UA_EXPORT UA_Logger Logger_Stdout_new(void);
  11. #endif /* LOGGER_STDOUT_H_ */