netgen/ng/main.cpp

18 lines
235 B
C++
Raw Permalink Normal View History

2015-01-27 20:53:58 +05:00
#ifdef WIN32
// a wrapper to load netgen-dll into the executable
2015-01-23 15:14:42 +05:00
#include <mydefs.hpp>
DLL_HEADER int NG_main(int argc, char ** argv);
int main(int argc, char ** argv)
{
2015-01-27 20:53:58 +05:00
return NG_main(argc, argv);
}
#endif