ua_log_stdout.h 660 B

123456789101112131415161718192021222324
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  5. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information. */
  6. #ifndef UA_LOG_STDOUT_H_
  7. #define UA_LOG_STDOUT_H_
  8. #include "ua_types.h"
  9. #include "ua_log.h"
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. UA_EXPORT void UA_Log_Stdout(UA_LogLevel level, UA_LogCategory category, const char *msg, ...);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* UA_LOG_STDOUT_H_ */