mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 15:23:02 +01:00
one more form of ERR_cstring()
This commit is contained in:
parent
e2c29be532
commit
42e9456d27
@ -127,6 +127,10 @@ void ERR_corrupt(int number)
|
||||
}
|
||||
#endif
|
||||
|
||||
const TEXT* ERR_cstring(const Firebird::string& in_string)
|
||||
{
|
||||
return ERR_cstring(in_string.c_str());
|
||||
}
|
||||
|
||||
const TEXT* ERR_cstring(const TEXT* in_string)
|
||||
{
|
||||
|
@ -24,6 +24,8 @@
|
||||
#ifndef JRD_ERR_PROTO_H
|
||||
#define JRD_ERR_PROTO_H
|
||||
|
||||
#include "fb_string.h"
|
||||
|
||||
#ifndef REQUESTER
|
||||
|
||||
namespace Jrd {
|
||||
@ -38,7 +40,7 @@ typedef enum idx_e {
|
||||
idx_e_foreign
|
||||
} IDX_E;
|
||||
|
||||
class jrd_rel;
|
||||
class jrd_rel;
|
||||
} //namespace Jrd
|
||||
|
||||
bool ERR_post_warning(ISC_STATUS, ...);
|
||||
@ -57,6 +59,7 @@ void ERR_log(int, int, const TEXT*);
|
||||
#endif /* REQUESTER */
|
||||
|
||||
const TEXT* ERR_cstring(const TEXT*);
|
||||
const TEXT* ERR_cstring(const Firebird::string&);
|
||||
const TEXT* ERR_string(const TEXT*, int);
|
||||
|
||||
#endif /* JRD_ERR_PROTO_H */
|
||||
|
Loading…
Reference in New Issue
Block a user