Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
6919c8df
Commit
6919c8df
authored
14 years ago
by
Andrew Nguyen
Committed by
Alexandre Julliard
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ipconfig: Add stub implementation.
parent
1f763414
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
configure
+1
-0
1 addition, 0 deletions
configure
configure.ac
+1
-0
1 addition, 0 deletions
configure.ac
programs/ipconfig/Makefile.in
+11
-0
11 additions, 0 deletions
programs/ipconfig/Makefile.in
programs/ipconfig/ipconfig.c
+31
-0
31 additions, 0 deletions
programs/ipconfig/ipconfig.c
with
44 additions
and
0 deletions
configure
+
1
−
0
View file @
6919c8df
...
...
@@ -14905,6 +14905,7 @@ wine_fn_config_program extrac32 enable_extrac32 install
wine_fn_config_program hh enable_hh
install
wine_fn_config_program icinfo enable_icinfo
install
wine_fn_config_program iexplore enable_iexplore
install
wine_fn_config_program ipconfig enable_ipconfig
install
wine_fn_config_program lodctr enable_lodctr
install
wine_fn_config_program mshta enable_mshta
install
wine_fn_config_program msiexec enable_msiexec installbin
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
0
View file @
6919c8df
...
...
@@ -2744,6 +2744,7 @@ WINE_CONFIG_PROGRAM(extrac32,install)
WINE_CONFIG_PROGRAM(hh,install)
WINE_CONFIG_PROGRAM(icinfo,install)
WINE_CONFIG_PROGRAM(iexplore,install)
WINE_CONFIG_PROGRAM(ipconfig,install)
WINE_CONFIG_PROGRAM(lodctr,install)
WINE_CONFIG_PROGRAM(mshta,install)
WINE_CONFIG_PROGRAM(msiexec,installbin)
...
...
This diff is collapsed.
Click to expand it.
programs/ipconfig/Makefile.in
0 → 100644
+
11
−
0
View file @
6919c8df
EXTRADEFS
=
-DWINE_NO_UNICODE_MACROS
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
ipconfig.exe
APPMODE
=
-mconsole
-municode
C_SRCS
=
ipconfig.c
@MAKE_PROG_RULES@
This diff is collapsed.
Click to expand it.
programs/ipconfig/ipconfig.c
0 → 100644
+
31
−
0
View file @
6919c8df
/*
* IP configuration utility
*
* Copyright 2010 Andrew Nguyen
*
* 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
<windows.h>
#include
<wine/debug.h>
#include
<wine/unicode.h>
WINE_DEFAULT_DEBUG_CHANNEL
(
ipconfig
);
int
wmain
(
int
argc
,
WCHAR
*
argv
[])
{
WINE_FIXME
(
"ipconfig.exe is not implemented
\n
"
);
return
0
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment