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
e64f7525
Commit
e64f7525
authored
Oct 29, 2009
by
Austin English
Committed by
Alexandre Julliard
Oct 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshta: Add a stub program.
parent
32233377
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
55 additions
and
0 deletions
+55
-0
configure
configure
+10
-0
configure.ac
configure.ac
+1
-0
Makefile.in
programs/mshta/Makefile.in
+15
-0
main.c
programs/mshta/main.c
+29
-0
No files found.
configure
View file @
e64f7525
...
...
@@ -17633,6 +17633,15 @@ programs/lodctr/Makefile: programs/lodctr/Makefile.in programs/Makeprog.rules"
ac_config_files
=
"
$ac_config_files
programs/lodctr/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
programs/mshta/Makefile"
test
"x
$enable_mshta
"
!=
xno
&&
ALL_PROGRAM_DIRS
=
"
$ALL_PROGRAM_DIRS
\\
mshta"
&&
ALL_PROGRAM_INSTALL_DIRS
=
"
$ALL_PROGRAM_INSTALL_DIRS
\\
mshta"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
programs/mshta/Makefile: programs/mshta/Makefile.in programs/Makeprog.rules"
ac_config_files
=
"
$ac_config_files
programs/mshta/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
programs/msiexec/Makefile"
test
"x
$enable_msiexec
"
!=
xno
&&
ALL_PROGRAM_DIRS
=
"
$ALL_PROGRAM_DIRS
\\
msiexec"
&&
ALL_PROGRAM_INSTALL_DIRS
=
"
$ALL_PROGRAM_INSTALL_DIRS
\\
...
...
@@ -19245,6 +19254,7 @@ do
"programs/icinfo/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/icinfo/Makefile" ;;
"programs/iexplore/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/iexplore/Makefile" ;;
"programs/lodctr/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/lodctr/Makefile" ;;
"programs/mshta/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/mshta/Makefile" ;;
"programs/msiexec/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/msiexec/Makefile" ;;
"programs/net/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/net/Makefile" ;;
"programs/notepad/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/notepad/Makefile" ;;
...
...
configure.ac
View file @
e64f7525
...
...
@@ -2589,6 +2589,7 @@ WINE_CONFIG_MAKEFILE([programs/hh/Makefile],[programs/Makeprog.rules],[programs]
WINE_CONFIG_MAKEFILE([programs/icinfo/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/iexplore/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/lodctr/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/mshta/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/msiexec/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS,ALL_PROGRAM_BIN_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/net/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS])
WINE_CONFIG_MAKEFILE([programs/notepad/Makefile],[programs/Makeprog.rules],[programs],[ALL_PROGRAM_DIRS,ALL_PROGRAM_INSTALL_DIRS,ALL_PROGRAM_BIN_INSTALL_DIRS])
...
...
programs/mshta/Makefile.in
0 → 100644
View file @
e64f7525
EXTRADEFS
=
-DWINE_NO_UNICODE_MACROS
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
mshta.exe
APPMODE
=
-mwindows
-municode
IMPORTS
=
kernel32
C_SRCS
=
\
main.c
@MAKE_PROG_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
programs/mshta/main.c
0 → 100644
View file @
e64f7525
/*
* MSHTA 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 <stdio.h>
#include <windows.h>
int
WINAPI
wWinMain
(
HINSTANCE
hInst
,
HINSTANCE
hPrevInst
,
LPSTR
cmdline
,
int
cmdshow
)
{
printf
(
"mshta.exe is a stub!
\n
"
);
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