mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-23 12:14:15 +08:00
Added fuse_pkgversion function
Returns the full PACKAGE_VERSION string, per autoconf
This commit is contained in:
parent
0af0d9740b
commit
7d687b939d
@ -268,6 +268,13 @@ int fuse_daemonize(int foreground);
|
|||||||
*/
|
*/
|
||||||
int fuse_version(void);
|
int fuse_version(void);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the full package version string of the library
|
||||||
|
*
|
||||||
|
* @return the package version
|
||||||
|
*/
|
||||||
|
const char *fuse_pkgversion(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destroy poll handle
|
* Destroy poll handle
|
||||||
*
|
*
|
||||||
|
@ -332,3 +332,7 @@ int fuse_version(void)
|
|||||||
return FUSE_VERSION;
|
return FUSE_VERSION;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *fuse_pkgversion(void)
|
||||||
|
{
|
||||||
|
return PACKAGE_VERSION;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user