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
6547fef3
Commit
6547fef3
authored
Feb 26, 2008
by
Louis Lenders
Committed by
Alexandre Julliard
Feb 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
programs: Add a stubbed out secedit.exe.
parent
e49e8b20
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
45 additions
and
0 deletions
+45
-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/secedit/Makefile.in
+14
-0
main.c
programs/secedit/main.c
+22
-0
No files found.
.gitignore
View file @
6547fef3
...
...
@@ -702,6 +702,7 @@ programs/rpcss/irot.h
programs/rpcss/irot_s.c
programs/rpcss/rpcss
programs/rundll32/rundll32
programs/secedit/secedit
programs/spoolsv/spoolsv
programs/start/rsrc.res
programs/start/start
...
...
Makefile.in
View file @
6547fef3
...
...
@@ -523,6 +523,7 @@ ALL_MAKEFILES = \
programs/regsvr32/Makefile
\
programs/rpcss/Makefile
\
programs/rundll32/Makefile
\
programs/secedit/Makefile
\
programs/spoolsv/Makefile
\
programs/start/Makefile
\
programs/svchost/Makefile
\
...
...
@@ -938,6 +939,7 @@ programs/regedit/Makefile: programs/regedit/Makefile.in programs/Makeprog.rules
programs/regsvr32/Makefile
:
programs/regsvr32/Makefile.in programs/Makeprog.rules
programs/rpcss/Makefile
:
programs/rpcss/Makefile.in programs/Makeprog.rules
programs/rundll32/Makefile
:
programs/rundll32/Makefile.in programs/Makeprog.rules
programs/secedit/Makefile
:
programs/secedit/Makefile.in programs/Makeprog.rules
programs/spoolsv/Makefile
:
programs/spoolsv/Makefile.in programs/Makeprog.rules
programs/start/Makefile
:
programs/start/Makefile.in programs/Makeprog.rules
programs/svchost/Makefile
:
programs/svchost/Makefile.in programs/Makeprog.rules
...
...
configure
View file @
6547fef3
...
...
@@ -21897,6 +21897,8 @@ ac_config_files="$ac_config_files programs/rpcss/Makefile"
ac_config_files
=
"
$ac_config_files
programs/rundll32/Makefile"
ac_config_files
=
"
$ac_config_files
programs/secedit/Makefile"
ac_config_files
=
"
$ac_config_files
programs/spoolsv/Makefile"
ac_config_files
=
"
$ac_config_files
programs/start/Makefile"
...
...
@@ -22898,6 +22900,7 @@ do
"programs/regsvr32/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/regsvr32/Makefile" ;;
"programs/rpcss/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/rpcss/Makefile" ;;
"programs/rundll32/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/rundll32/Makefile" ;;
"programs/secedit/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/secedit/Makefile" ;;
"programs/spoolsv/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/spoolsv/Makefile" ;;
"programs/start/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/start/Makefile" ;;
"programs/svchost/Makefile") CONFIG_FILES="
$CONFIG_FILES
programs/svchost/Makefile" ;;
...
...
configure.ac
View file @
6547fef3
...
...
@@ -2022,6 +2022,7 @@ AC_CONFIG_FILES([programs/regedit/Makefile])
AC_CONFIG_FILES([programs/regsvr32/Makefile])
AC_CONFIG_FILES([programs/rpcss/Makefile])
AC_CONFIG_FILES([programs/rundll32/Makefile])
AC_CONFIG_FILES([programs/secedit/Makefile])
AC_CONFIG_FILES([programs/spoolsv/Makefile])
AC_CONFIG_FILES([programs/start/Makefile])
AC_CONFIG_FILES([programs/svchost/Makefile])
...
...
programs/Makefile.in
View file @
6547fef3
...
...
@@ -25,6 +25,7 @@ SUBDIRS = \
regsvr32
\
rpcss
\
rundll32
\
secedit
\
spoolsv
\
start
\
svchost
\
...
...
@@ -69,6 +70,7 @@ INSTALLSUBDIRS = \
regsvr32
\
rpcss
\
rundll32
\
secedit
\
spoolsv
\
start
\
svchost
\
...
...
programs/secedit/Makefile.in
0 → 100644
View file @
6547fef3
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
secedit.exe
APPMODE
=
-mconsole
IMPORTS
=
kernel32
C_SRCS
=
\
main.c
\
@MAKE_PROG_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
programs/secedit/main.c
0 → 100644
View file @
6547fef3
/*
* 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 <stdlib.h>
int
main
()
{
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