8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 01:23: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:
alexpeshkoff 2009-10-30 09:09:10 +00:00
parent 2263810f47
commit bb5a238d29
2 changed files with 6 additions and 5 deletions

View File

@ -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)
{

View File

@ -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"