mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-27 05:23:02 +01:00
16 lines
296 B
C++
16 lines
296 B
C++
#include "firebird.h"
|
|
#include "../jrd/common.h"
|
|
|
|
#ifndef MINGW
|
|
|
|
extern "C" {
|
|
int CLIB_ROUTINE server_main( int argc, char** argv);
|
|
}
|
|
|
|
// This routine invokes server loop implemented in the shared library
|
|
int CLIB_ROUTINE main( int argc, char** argv) {
|
|
return server_main(argc, argv);
|
|
}
|
|
|
|
#endif
|