mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
16 lines
209 B
C
16 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__ */
|