|
From: <lab...@us...> - 2015-05-06 16:15:33
|
Revision: 1524
http://sourceforge.net/p/opengtoolkit/svn/1524
Author: labviewer
Date: 2015-05-06 16:15:31 +0000 (Wed, 06 May 2015)
Log Message:
-----------
Add version information about the LabVIEW wrapper too
Modified Paths:
--------------
trunk/lvzip/c_source/lvapi.c
Modified: trunk/lvzip/c_source/lvapi.c
===================================================================
--- trunk/lvzip/c_source/lvapi.c 2015-05-06 16:08:15 UTC (rev 1523)
+++ trunk/lvzip/c_source/lvapi.c 2015-05-06 16:15:31 UTC (rev 1524)
@@ -144,9 +144,12 @@
return err;
}
+static char version[250];
+
LibAPI(const char *) lvzlib_zlibVersion(void)
{
- return zlibVersion();
+ snprintf(version, sizeof(version), "LabVIEW ZIP library, version: 4.1\nzlib version: %s", zlibVersion());
+ return version;
}
LibAPI(int) lvzlib_compress(Bytef *dest, uLongf *destLen,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|