aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_common.h
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2021-07-24 22:05:46 +0200
committerChristian Grothoff <grothoff@gnunet.org>2021-07-24 22:06:04 +0200
commit31eae6bbe16302d2593b806ef3d2ac2ca9c2d8de (patch)
treeeba886ebfd704f83f13ce1b50976e3bdca6b2449 /src/include/gnunet_common.h
parentebd034f8139ee90336fd8e7e2f24f9c9d39c5e25 (diff)
downloadgnunet-31eae6bbe16302d2593b806ef3d2ac2ca9c2d8de.tar.gz
gnunet-31eae6bbe16302d2593b806ef3d2ac2ca9c2d8de.zip
early draft for libgnunetpq event notification support
Diffstat (limited to 'src/include/gnunet_common.h')
-rw-r--r--src/include/gnunet_common.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/include/gnunet_common.h b/src/include/gnunet_common.h
index 1126deaf4..df1ccff26 100644
--- a/src/include/gnunet_common.h
+++ b/src/include/gnunet_common.h
@@ -435,11 +435,12 @@ enum GNUNET_ErrorType
435 * @param date when was the message logged? 435 * @param date when was the message logged?
436 * @param message what is the message 436 * @param message what is the message
437 */ 437 */
438typedef void (*GNUNET_Logger) (void *cls, 438typedef void
439 enum GNUNET_ErrorType kind, 439(*GNUNET_Logger) (void *cls,
440 const char *component, 440 enum GNUNET_ErrorType kind,
441 const char *date, 441 const char *component,
442 const char *message); 442 const char *date,
443 const char *message);
443 444
444 445
445/** 446/**