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
451616ee
Commit
451616ee
authored
May 02, 2007
by
Tim Schwartz
Committed by
Alexandre Julliard
May 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
net.exe: Initial stub.
parent
8ecd3465
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
63 additions
and
0 deletions
+63
-0
.gitignore
.gitignore
+1
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
programs/Makefile.in
+2
-0
Makefile.in
programs/net/Makefile.in
+13
-0
net.c
programs/net/net.c
+41
-0
No files found.
.gitignore
View file @
451616ee
...
...
@@ -756,6 +756,7 @@ programs/iexplore/iexplore
programs/msiexec/msiexec
programs/msiexec/msiexec.ico
programs/msiexec/rsrc.res
programs/net/net
programs/notepad/notepad
programs/notepad/rsrc.res
programs/oleview/oleview
...
...
Makefile.in
View file @
451616ee
...
...
@@ -449,6 +449,7 @@ ALL_MAKEFILES = \
programs/icinfo/Makefile
\
programs/iexplore/Makefile
\
programs/msiexec/Makefile
\
programs/net/Makefile
\
programs/notepad/Makefile
\
programs/oleview/Makefile
\
programs/progman/Makefile
\
...
...
@@ -794,6 +795,7 @@ programs/hh/Makefile: programs/hh/Makefile.in programs/Makeprog.rules
programs/icinfo/Makefile
:
programs/icinfo/Makefile.in programs/Makeprog.rules
programs/iexplore/Makefile
:
programs/iexplore/Makefile.in programs/Makeprog.rules
programs/msiexec/Makefile
:
programs/msiexec/Makefile.in programs/Makeprog.rules
programs/net/Makefile
:
programs/net/Makefile.in programs/Makeprog.rules
programs/notepad/Makefile
:
programs/notepad/Makefile.in programs/Makeprog.rules
programs/oleview/Makefile
:
programs/oleview/Makefile.in programs/Makeprog.rules
programs/progman/Makefile
:
programs/progman/Makefile.in programs/Makeprog.rules
...
...
configure
View file @
451616ee
...
...
@@ -20903,6 +20903,8 @@ ac_config_files="$ac_config_files programs/iexplore/Makefile"
ac_config_files
=
"
$ac_config_files
programs/msiexec/Makefile"
ac_config_files
=
"
$ac_config_files
programs/net/Makefile"
ac_config_files
=
"
$ac_config_files
programs/notepad/Makefile"
ac_config_files
=
"
$ac_config_files
programs/oleview/Makefile"
...
...
@@ -21838,6 +21840,7 @@ do
"programs/icinfo/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/icinfo/Makefile" ;;
"programs/iexplore/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/iexplore/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" ;;
"programs/oleview/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/oleview/Makefile" ;;
"programs/progman/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/progman/Makefile" ;;
...
...
configure.ac
View file @
451616ee
...
...
@@ -1776,6 +1776,7 @@ AC_CONFIG_FILES([programs/hh/Makefile])
AC_CONFIG_FILES([programs/icinfo/Makefile])
AC_CONFIG_FILES([programs/iexplore/Makefile])
AC_CONFIG_FILES([programs/msiexec/Makefile])
AC_CONFIG_FILES([programs/net/Makefile])
AC_CONFIG_FILES([programs/notepad/Makefile])
AC_CONFIG_FILES([programs/oleview/Makefile])
AC_CONFIG_FILES([programs/progman/Makefile])
...
...
programs/Makefile.in
View file @
451616ee
...
...
@@ -17,6 +17,7 @@ SUBDIRS = \
icinfo
\
iexplore
\
msiexec
\
net
\
notepad
\
oleview
\
progman
\
...
...
@@ -57,6 +58,7 @@ INSTALLSUBDIRS = \
icinfo
\
iexplore
\
msiexec
\
net
\
notepad
\
oleview
\
progman
\
...
...
programs/net/Makefile.in
0 → 100644
View file @
451616ee
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
net.exe
APPMODE
=
-mconsole
IMPORTS
=
kernel32
C_SRCS
=
net.c
@MAKE_PROG_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
programs/net/net.c
0 → 100644
View file @
451616ee
/*
* Copyright 2007 Tim Schwartz
*
* 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 <stdio.h>
#include <string.h>
int
main
(
int
argc
,
char
*
argv
[])
{
int
ret
=
0
;
if
(
argc
<
2
)
{
printf
(
"The syntax of this command is:
\n\n
"
);
printf
(
"NET [ HELP ]
\n
"
);
return
1
;
}
if
(
!
strcasecmp
(
argv
[
1
],
"help"
))
{
printf
(
"The syntax of this command is:
\n\n
"
);
printf
(
"NET HELP command
\n
-or-
\n
NET command /HELP
\n\n
"
);
printf
(
" Commands available are:
\n
"
);
printf
(
" NET HELP
\n
"
);
}
return
ret
;
}
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