8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-27 18:03:04 +01:00
firebird-mirror/src/remote/server_stub.cpp
2009-01-21 13:04:36 +00:00

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