mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
33d1689fcf
added: storage/connect/rcmsg.h modified: storage/connect/CMakeLists.txt storage/connect/odbconn.cpp storage/connect/plgdbutl.cpp storage/connect/plugutil.c storage/connect/rcmsg.c storage/connect/tabodbc.cpp
15 lines
209 B
C
15 lines
209 B
C
#ifndef __RCMSG_H__
|
|
#define __RCMSG_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char *GetMsgid(int id);
|
|
int GetRcString(int id, char *buf, int bufsize);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __RCMSG_H__ */
|