summaryrefslogtreecommitdiff
path: root/scripts/context/stubs/source/mtxrun_exe.c
blob: 0c27c272e37b781aef2f36d488eedecd4c479f07 (plain)
1
2
3
4
5
6
7
8
// This is the .exe part of the mtxrun program, see mtxrun_dll.c
// for more details.

#include <windows.h>

__declspec(dllimport) int dllrunscript( int argc, char *argv[] );

int main( int argc, char *argv[] ) { return dllrunscript( argc, argv ); }