summaryrefslogtreecommitdiff
path: root/qrencode.h
diff options
context:
space:
mode:
authorKentaro Fukuchi <kentaro@fukuchi.org>2020-09-29 00:04:17 +0900
committerKentaro Fukuchi <kentaro@fukuchi.org>2020-09-29 00:04:17 +0900
commit7c8dcced8e2463ac0aa5b4bfc5f9d0d4912dadbe (patch)
tree26c1c524468030cdab48d12e2be7aa969594c72c /qrencode.h
parent02b01564a7732f28982c78e6bd78759757f7a2f1 (diff)
downloadProject-Tick-7c8dcced8e2463ac0aa5b4bfc5f9d0d4912dadbe.tar.gz
Project-Tick-7c8dcced8e2463ac0aa5b4bfc5f9d0d4912dadbe.zip
Comments for QRcode_APIVersion() has been slightly improved.
Diffstat (limited to 'qrencode.h')
-rw-r--r--qrencode.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/qrencode.h b/qrencode.h
index 039176577b..1c66f336c4 100644
--- a/qrencode.h
+++ b/qrencode.h
@@ -538,10 +538,11 @@ extern void QRcode_List_free(QRcode_List *qrlist);
*****************************************************************************/
/**
- * Return a string that identifies the library version.
- * @param major_version major version number
- * @param minor_version minor version number
- * @param micro_version micro version number
+ * Return the major.minor.micro version numbers that identifies the
+ * library version.
+ * @param major_version a pointer where to store the major version number
+ * @param minor_version a pointer where to store the minor version number
+ * @param micro_version a pointer where to store the micro version number
*/
extern void QRcode_APIVersion(int *major_version, int *minor_version, int *micro_version);