Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
b3fb793b
Commit
b3fb793b
authored
Aug 24, 2009
by
Austin English
Committed by
Alexandre Julliard
Aug 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxdiag: Add stub implementation.
parent
d2065e3d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
53 additions
and
0 deletions
+53
-0
configure
configure
+10
-0
configure.ac
configure.ac
+1
-0
Makefile.in
programs/dxdiag/Makefile.in
+15
-0
main.c
programs/dxdiag/main.c
+27
-0
No files found.
configure
View file @
b3fb793b
...
...
@@ -17154,6 +17154,15 @@ programs/control/Makefile: programs/control/Makefile.in programs/Makeprog.rules"
ac_config_files
=
"
$ac_config_files
programs/control/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
programs/dxdiag/Makefile"
test
"x
$enable_dxdiag
"
!=
xno
&&
ALL_PROGRAM_DIRS
=
"
$ALL_PROGRAM_DIRS
\\
dxdiag"
&&
ALL_PROGRAM_INSTALL_DIRS
=
"
$ALL_PROGRAM_INSTALL_DIRS
\\
dxdiag"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
programs/dxdiag/Makefile: programs/dxdiag/Makefile.in programs/Makeprog.rules"
ac_config_files
=
"
$ac_config_files
programs/dxdiag/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
programs/eject/Makefile"
test
"x
$enable_eject
"
!=
xno
&&
ALL_PROGRAM_DIRS
=
"
$ALL_PROGRAM_DIRS
\\
eject"
&&
ALL_PROGRAM_INSTALL_DIRS
=
"
$ALL_PROGRAM_INSTALL_DIRS
\\
...
...
@@ -18804,6 +18813,7 @@ do
"programs/cmd/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/cmd/Makefile" ;;
"programs/cmdlgtst/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/cmdlgtst/Makefile" ;;
"programs/control/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/control/Makefile" ;;
"programs/dxdiag/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/dxdiag/Makefile" ;;
"programs/eject/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/eject/Makefile" ;;
"programs/expand/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/expand/Makefile" ;;
"programs/explorer/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/explorer/Makefile" ;;
...
...
configure.ac
View file @
b3fb793b
...
...
@@ -2517,6 +2517,7 @@ WINE_CONFIG_MAKEFILE([programs/clock/Makefile],[programs/Makeprog.rules],[progra
WINE_CONFIG_MAKEFILE([programs/cmd/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/cmdlgtst/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS])
WINE_CONFIG_MAKEFILE([programs/control/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/dxdiag/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/eject/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/expand/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/explorer/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
...
...
programs/dxdiag/Makefile.in
0 → 100644
View file @
b3fb793b
EXTRADEFS
=
-DWINE_NO_UNICODE_MACROS
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
programs/dxdiag/main.c
0 → 100644
View file @
b3fb793b
/*
* DxDiag Implementation
*
* Copyright 2009 Austin English
*
* 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
*/
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
int
WINAPI
WinMain
(
HINSTANCE
hInst
,
HINSTANCE
hPrevInst
,
LPSTR
cmdline
,
int
cmdshow
)
{
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment