beta-0.89.2
[luatex.git] / source / texk / texlive / w32_wrapper / runscript_exe.c
blob29d04a93a43f02777d941608301de24437717c15
1 /************************************************************************
3 This file is a part of the wrapper program for launching scripts
4 and programs in TeX Live on Windows. See readme.txt for more details.
6 This file was originally written in 2009 by Tomasz M. Trzeciak and
7 was placed in the Public Domain.
9 ************************************************************************/
11 #include <windows.h>
13 __declspec(dllimport) int dllrunscript( int argc, char *argv[] );
15 int main( int argc, char *argv[] ) { return dllrunscript( argc, argv ); }