Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
4b281b2b
Commit
4b281b2b
authored
Dec 06, 2010
by
Louis Lenders
Committed by
Alexandre Julliard
Dec 07, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stubbed wmic.exe.
parent
cd30e956
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
43 additions
and
0 deletions
+43
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
programs/wmic/Makefile.in
+8
-0
main.c
programs/wmic/main.c
+33
-0
No files found.
configure
View file @
4b281b2b
...
...
@@ -15390,6 +15390,7 @@ wine_fn_config_program winhelp.exe16 enable_win16 install
wine_fn_config_program winhlp32 enable_winhlp32
install
wine_fn_config_program winoldap.mod16 enable_win16
install
wine_fn_config_program winver enable_winver
install
wine_fn_config_program wmic enable_wmic
install
wine_fn_config_program wordpad enable_wordpad
install
wine_fn_config_program write enable_write
install
wine_fn_config_program wscript enable_wscript
install
...
...
configure.ac
View file @
4b281b2b
...
...
@@ -2912,6 +2912,7 @@ WINE_CONFIG_PROGRAM(winhelp.exe16,install,enable_win16)
WINE_CONFIG_PROGRAM(winhlp32,install)
WINE_CONFIG_PROGRAM(winoldap.mod16,install,enable_win16)
WINE_CONFIG_PROGRAM(winver,install)
WINE_CONFIG_PROGRAM(wmic,install)
WINE_CONFIG_PROGRAM(wordpad,install)
WINE_CONFIG_PROGRAM(write,install)
WINE_CONFIG_PROGRAM(wscript,install)
...
...
programs/wmic/Makefile.in
0 → 100644
View file @
4b281b2b
EXTRADEFS
=
-DWINE_NO_UNICODE_MACROS
MODULE
=
wmic.exe
APPMODE
=
-mconsole
-municode
C_SRCS
=
\
main.c
@MAKE_PROG_RULES@
programs/wmic/main.c
0 → 100644
View file @
4b281b2b
/*
* Copyright 2010 Louis Lenders
*
* 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 "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wmic
);
int
wmain
(
int
argc
,
WCHAR
*
argv
[])
{
int
i
;
WINE_FIXME
(
"stub:"
);
for
(
i
=
0
;
i
<
argc
;
i
++
)
WINE_FIXME
(
" %s"
,
wine_dbgstr_w
(
argv
[
i
]));
WINE_FIXME
(
"
\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