From c5e0e41ce7248ce21528c4aa9b7ed794cc3a1497 Mon Sep 17 00:00:00 2001
From: Bastien Nocera <hadess@hadess.net>
Date: Tue, 22 May 2018 15:48:13 +0200
Subject: [PATCH] docs: Add documentation for opaque structures

---
 libfprint/fprint.h | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/libfprint/fprint.h b/libfprint/fprint.h
index 46017ac..67e2870 100644
--- a/libfprint/fprint.h
+++ b/libfprint/fprint.h
@@ -30,36 +30,48 @@ extern "C" {
 /**
  * fp_dscv_dev:
  *
+ * #fp_dscv_dev is an opaque structure type.  You must access it using the
+ * functions below.
  */
 struct fp_dscv_dev;
 
 /**
  * fp_dscv_print:
  *
+ * #fp_dscv_print is an opaque structure type.  You must access it using the
+ * functions below.
  */
 struct fp_dscv_print;
 
 /**
  * fp_dev:
  *
+ * #fp_dev is an opaque structure type.  You must access it using the
+ * functions below.
  */
 struct fp_dev;
 
 /**
  * fp_driver:
  *
+ * #fp_driver is an opaque structure type.  You must access it using the
+ * functions below.
  */
 struct fp_driver;
 
 /**
  * fp_print_data:
  *
+ * #fp_print_data is an opaque structure type.  You must access it using the
+ * functions below.
  */
 struct fp_print_data;
 
 /**
  * fp_img:
  *
+ * #fp_img is an opaque structure type.  You must access it using the
+ * functions below.
  */
 struct fp_img;