diff --git a/programs/dxdiag/Makefile.in b/programs/dxdiag/Makefile.in new file mode 100644 index 0000000..bb59085 --- /dev/null +++ b/programs/dxdiag/Makefile.in @@ -0,0 +1,14 @@ +TOPSRCDIR = @top_srcdir@ +TOPOBJDIR = ../.. +SRCDIR = @srcdir@ +VPATH = @srcdir@ +MODULE = dxdiag.exe +APPMODE = -mwindows +IMPORTS = kernel32 + +C_SRCS = \ + main.c + +@MAKE_PROG_RULES@ + +@DEPENDENCIES@ # everything below this line is overwritten by make depend diff --git a/programs/dxdiag/main.c b/programs/dxdiag/main.c new file mode 100644 index 0000000..33dd04f --- /dev/null +++ b/programs/dxdiag/main.c @@ -0,0 +1,34 @@ +/* + * Dxdiag main entry point + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + * + */ + +#include + +/***************************************************************************** + * Name : WinMain + * Description: Main windows entry point + * Parameters : hInstance + * hPrev + * szCmdLine + * nShow + * Returns : Program exit code + */ +int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrev, LPSTR szCmdLine, int nShow) +{ + return 0; +}