mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 04:03:03 +01:00
Fixed build with Sun Studio after making SCH_ast() dummy function. Does not require mentioning in whats new and release notes.
This commit is contained in:
parent
2263810f47
commit
bb5a238d29
@ -823,10 +823,6 @@ void API_ROUTINE CVT_move(const dsc*, dsc*, FPTR_ERROR err)
|
||||
// This function was exported earlier for reasons, not completely clear to me.
|
||||
// It MUST not be ever exported - looks like I've missed bad commit in CVS.
|
||||
// Keep it here to avoid senseless API change.
|
||||
enum ast_t
|
||||
{
|
||||
AST_dummy
|
||||
};
|
||||
|
||||
void API_ROUTINE SCH_ast(enum ast_t)
|
||||
{
|
||||
|
@ -194,9 +194,14 @@ ISC_STATUS API_ROUTINE isc_add_user(ISC_STATUS*, const USER_SEC_DATA*);
|
||||
ISC_STATUS API_ROUTINE isc_delete_user(ISC_STATUS*, const USER_SEC_DATA*);
|
||||
ISC_STATUS API_ROUTINE isc_modify_user(ISC_STATUS*, const USER_SEC_DATA*);
|
||||
|
||||
// unsupported private API call - added to prevent application startup problems
|
||||
// unsupported private API call(s) - added to prevent application startup problems
|
||||
struct dsc;
|
||||
void API_ROUTINE CVT_move(const dsc*, dsc*, FPTR_ERROR);
|
||||
enum ast_t
|
||||
{
|
||||
AST_dummy
|
||||
};
|
||||
void API_ROUTINE SCH_ast(enum ast_t);
|
||||
|
||||
} // extern "C"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user