btrfs-progs: tests: update README, images, coding style
[platform/upstream/btrfs-progs.git] / send-stream.h
index 9a17e32..39901f8 100644 (file)
  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  * Boston, MA 021110-1307, USA.
  */
-#ifndef SEND_STREAM_H_
-#define SEND_STREAM_H_
+
+#ifndef __BTRFS_SEND_STREAM_H__
+#define __BTRFS_SEND_STREAM_H__
+
+/*
+ * NOTE: this file is public API, any incompatible change has to update
+ * library version
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#if BTRFS_FLAT_INCLUDES
+#include "kerncompat.h"
+#else
+#include <btrfs/kerncompat.h>
+#endif /* BTRFS_FLAT_INCLUDES */
 
 struct btrfs_send_ops {
        int (*subvol)(const char *path, const u8 *uuid, u64 ctransid,
@@ -53,7 +69,12 @@ struct btrfs_send_ops {
 };
 
 int btrfs_read_and_process_send_stream(int fd,
-                                      struct btrfs_send_ops *ops, void *user);
+                                      struct btrfs_send_ops *ops, void *user,
+                                      int honor_end_cmd,
+                                      u64 max_errors);
 
+#ifdef __cplusplus
+}
+#endif
 
-#endif /* SEND_STREAM_H_ */
+#endif