netgen/ng/main.cpp

18 lines
237 B
C++
Raw Normal View History

2015-01-27 20:56:32 +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)
{
return NG_main(argc, argv);
2015-01-27 20:56:32 +05:00
}
#endif