beta-0.89.2
[luatex.git] / source / texk / texlive / w32_wrapper / wrunscript_exe.c
blob573501ae757f423b65fa87e3e45eb906c3002393
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 dllwrunscript(
14 HINSTANCE hInstance,
15 HINSTANCE hPrevInstance,
16 char *argline,
17 int winshow
20 int APIENTRY WinMain(
21 HINSTANCE hInstance,
22 HINSTANCE hPrevInstance,
23 char *argline,
24 int winshow
26 return dllwrunscript( hInstance, hPrevInstance, argline, winshow );