From 6ba101602442a1d18bcb050c25974ddb3b1f99c0 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Thu, 29 Nov 2018 17:15:10 +0100
Subject: [PATCH] lib: Hide struct fp_minutiae from the docs

It's only used internally.
---
 doc/libfprint-sections.txt | 1 -
 libfprint/fpi-img.h        | 2 ++
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/doc/libfprint-sections.txt b/doc/libfprint-sections.txt
index b0c74fa..556ea72 100644
--- a/doc/libfprint-sections.txt
+++ b/doc/libfprint-sections.txt
@@ -235,7 +235,6 @@ fp_img_driver
 <SECTION>
 <INCLUDE>fpi-img.h</INCLUDE>
 <FILE>fpi-img</FILE>
-fp_minutiae
 FpiImgFlags
 
 fpi_img_new
diff --git a/libfprint/fpi-img.h b/libfprint/fpi-img.h
index ab4bfe8..4ebc3f3 100644
--- a/libfprint/fpi-img.h
+++ b/libfprint/fpi-img.h
@@ -67,7 +67,9 @@ struct fp_img {
 	int height;
 	size_t length;
 	FpiImgFlags flags;
+	/*< private >*/
 	struct fp_minutiae *minutiae;
+	/*< public >*/
 	unsigned char *binarized;
 	unsigned char data[0];
 };