mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-09-19 02:27:55 +08:00
Rename function to mdbi_rc4 to prevent it from being exported
This commit is contained in:
@@ -16,8 +16,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef _mdbprivate_h_
|
||||
#define _mdbprivate_h_
|
||||
#ifndef MDBPRIVATE_H
|
||||
#define MDBPRIVATE_H
|
||||
|
||||
#include "mdbtools.h"
|
||||
|
||||
@@ -30,6 +30,14 @@
|
||||
#define g_memdup2 g_memdup
|
||||
#endif
|
||||
|
||||
void mdb_rc4(unsigned char *key, guint32 key_len, unsigned char *buf, guint32 buf_len);
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void mdbi_rc4(unsigned char *key, guint32 key_len, unsigned char *buf, guint32 buf_len);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
@@ -648,9 +648,6 @@ void mdb_iconv_init(MdbHandle *mdb);
|
||||
void mdb_iconv_close(MdbHandle *mdb);
|
||||
const char* mdb_target_charset(MdbHandle *mdb);
|
||||
|
||||
/* rc4.c */
|
||||
void mdb_rc4(unsigned char *key, guint32 key_len, unsigned char *buf, guint32 buf_len);
|
||||
|
||||
/** @}*/
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
Reference in New Issue
Block a user