mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-23 03:26:56 -04:00
ZBarcode_Version() -> ZBarcode_Version(void)
This commit is contained in:
parent
6c8338bda9
commit
e8bde7f4c3
3 changed files with 4 additions and 4 deletions
|
@ -1456,7 +1456,7 @@ unsigned int ZBarcode_Cap(int symbol_id, unsigned int cap_flag) {
|
|||
}
|
||||
|
||||
/* Return the version of Zint linked to */
|
||||
int ZBarcode_Version() {
|
||||
int ZBarcode_Version(void) {
|
||||
if (ZINT_VERSION_BUILD) {
|
||||
return (ZINT_VERSION_MAJOR * 10000) + (ZINT_VERSION_MINOR * 100) + ZINT_VERSION_RELEASE * 10
|
||||
+ ZINT_VERSION_BUILD;
|
||||
|
|
|
@ -407,7 +407,7 @@ extern "C" {
|
|||
ZINT_EXTERN unsigned int ZBarcode_Cap(int symbol_id, unsigned int cap_flag);
|
||||
|
||||
/* Return the version of Zint linked to */
|
||||
ZINT_EXTERN int ZBarcode_Version();
|
||||
ZINT_EXTERN int ZBarcode_Version(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue