mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-27 18:03:04 +01:00
17 lines
294 B
C++
17 lines
294 B
C++
#include "firebird.h"
|
|
#include "../jrd/common.h"
|
|
|
|
#ifndef MINGW
|
|
|
|
extern "C" {
|
|
int FB_EXPORTED 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
|