/************************************************************************ This file is a part of the wrapper program for launching scripts and programs in TeX Live on Windows. See readme.txt for more details. This file was originally written in 2009 by Tomasz M. Trzeciak and was placed in the Public Domain. ************************************************************************/ #include __declspec(dllimport) int dllwrunscript( HINSTANCE hInstance, HINSTANCE hPrevInstance, char *argline, int winshow ); int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, char *argline, int winshow ){ return dllwrunscript( hInstance, hPrevInstance, argline, winshow ); }