8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 05:23:02 +01:00
firebird-mirror/src/remote/server_stub.cpp

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