mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-25 11:37:11 +02:00
Integrate MySQL module.
This commit is contained in:
14
module/Vendor/MDBC/win-iconv/iconv.h
vendored
Normal file
14
module/Vendor/MDBC/win-iconv/iconv.h
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
#ifndef _LIBICONV_H
|
||||
#define _LIBICONV_H
|
||||
#include <stddef.h>
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
typedef void* iconv_t;
|
||||
iconv_t iconv_open(const char *tocode, const char *fromcode);
|
||||
int iconv_close(iconv_t cd);
|
||||
size_t iconv(iconv_t cd, const char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif//_LIBICONV_H
|
Reference in New Issue
Block a user