mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-29 14:25:23 -04:00
libzint.so: suppress exporting INTERNAL functions to the shared library; ZINT_TEST
This commit is contained in:
parent
c524d32227
commit
bca82ecc0d
58 changed files with 489 additions and 491 deletions
|
@ -29,6 +29,7 @@
|
|||
SUCH DAMAGE.
|
||||
|
||||
*/
|
||||
/* vim: set ts=4 sw=4 et : */
|
||||
|
||||
#ifndef __REEDSOL_H
|
||||
#define __REEDSOL_H
|
||||
|
@ -37,15 +38,14 @@
|
|||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
extern void rs_init_gf(const int poly);
|
||||
extern void rs_init_code(const int nsym,int index);
|
||||
extern void rs_encode(const size_t len,const unsigned char *data, unsigned char *res);
|
||||
extern void rs_encode_long(const int len,const unsigned int *data, unsigned int *res);
|
||||
extern void rs_free(void);
|
||||
INTERNAL void rs_init_gf(const int poly);
|
||||
INTERNAL void rs_init_code(const int nsym,int index);
|
||||
INTERNAL void rs_encode(const size_t len,const unsigned char *data, unsigned char *res);
|
||||
INTERNAL void rs_encode_long(const int len,const unsigned int *data, unsigned int *res);
|
||||
INTERNAL void rs_free(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* __REEDSOL_H */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue