X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fgraph%2Fnotification-packet.h;h=0b4cca976f3a9f44fac967df92883802d2b0a27d;hb=b19ff26f04df428047676dd736bd7cc9473906fe;hp=b56e9e7a112f97214f64203ec0107865cd057b0a;hpb=0d72b8c329ad51d14ab4e83330b38c2c8da69dd4;p=babeltrace.git diff --git a/include/babeltrace/graph/notification-packet.h b/include/babeltrace/graph/notification-packet.h index b56e9e7a..0b4cca97 100644 --- a/include/babeltrace/graph/notification-packet.h +++ b/include/babeltrace/graph/notification-packet.h @@ -2,10 +2,9 @@ #define BABELTRACE_GRAPH_NOTIFICATION_PACKET_H /* + * Copyright 2017-2018 Philippe Proulx * Copyright 2016 Jérémie Galarneau * - * Author: Jérémie Galarneau - * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights @@ -25,29 +24,28 @@ * SOFTWARE. */ +/* For bt_notification, bt_self_notification_iterator, bt_packet */ +#include + #ifdef __cplusplus extern "C" { #endif -struct bt_notification; -struct bt_self_notification_iterator; -struct bt_packet; - extern -struct bt_notification *bt_notification_packet_begin_create( - struct bt_self_notification_iterator *notification_iterator, - struct bt_packet *packet); +bt_notification *bt_notification_packet_beginning_create( + bt_self_notification_iterator *notification_iterator, + bt_packet *packet); extern -struct bt_notification *bt_notification_packet_end_create( - struct bt_self_notification_iterator *notification_iterator, - struct bt_packet *packet); +bt_notification *bt_notification_packet_end_create( + bt_self_notification_iterator *notification_iterator, + bt_packet *packet); -extern struct bt_packet *bt_notification_packet_begin_borrow_packet( - struct bt_notification *notification); +extern bt_packet *bt_notification_packet_beginning_borrow_packet( + bt_notification *notification); -extern struct bt_packet *bt_notification_packet_end_borrow_packet( - struct bt_notification *notification); +extern bt_packet *bt_notification_packet_end_borrow_packet( + bt_notification *notification); #ifdef __cplusplus }