X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4e62e76d104a17f0c9aaf9135ac605e9c8c87141..629ca0a0aab33745e9af920d3824c4a02660637e:/src/xbt/log_private.hpp diff --git a/src/xbt/log_private.hpp b/src/xbt/log_private.hpp index 01eb7263aa..e49cb065ea 100644 --- a/src/xbt/log_private.hpp +++ b/src/xbt/log_private.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,14 +8,14 @@ #include "xbt/log.h" struct xbt_log_appender_s { - void (*do_append) (xbt_log_appender_t this_appender, char *event); - void (*free_) (xbt_log_appender_t this_); + void (*do_append)(const s_xbt_log_appender_t* this_appender, const char* event); + void (*free_)(const s_xbt_log_appender_t* this_); void *data; }; struct xbt_log_layout_s { - int (*do_layout) (xbt_log_layout_t l, xbt_log_event_t event, const char *fmt); - void (*free_) (xbt_log_layout_t l); + int (*do_layout)(const s_xbt_log_layout_t* l, xbt_log_event_t event, const char* fmt); + void (*free_)(const s_xbt_log_layout_t* l); void *data; };