mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-13 06:34:32 -04:00
C++ support
option_3
This commit is contained in:
parent
d6d404da4c
commit
3b96fc9619
1 changed files with 14 additions and 1 deletions
|
@ -17,8 +17,14 @@
|
|||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
#ifndef ZINT_H
|
||||
#define ZINT_H
|
||||
|
||||
#define VERSION "1.6.0"
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#define VERSION "1.6.1"
|
||||
|
||||
struct zint_symbol {
|
||||
int symbology;
|
||||
|
@ -31,6 +37,7 @@ struct zint_symbol {
|
|||
char outfile[256];
|
||||
int option_1;
|
||||
int option_2;
|
||||
int option_3;
|
||||
char text[100];
|
||||
int rows;
|
||||
int width;
|
||||
|
@ -131,3 +138,9 @@ extern int ZBarcode_Delete(struct zint_symbol *symbol);
|
|||
extern int ZBarcode_Encode(struct zint_symbol *symbol, unsigned char *input);
|
||||
extern int ZBarcode_Print(struct zint_symbol *symbol);
|
||||
extern int ZBarcode_Encode_and_Print(struct zint_symbol *symbol, unsigned char *input);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue