programs: Add a stubbed out secedit.exe.

This commit is contained in:
Louis Lenders 2008-02-26 22:12:40 +00:00 committed by Alexandre Julliard
parent e49e8b20db
commit 6547fef34b
7 changed files with 45 additions and 0 deletions

1
.gitignore vendored
View File

@ -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

View File

@ -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

3
configure vendored
View File

@ -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" ;;

View File

@ -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])

View File

@ -25,6 +25,7 @@ SUBDIRS = \
regsvr32 \
rpcss \
rundll32 \
secedit \
spoolsv \
start \
svchost \
@ -69,6 +70,7 @@ INSTALLSUBDIRS = \
regsvr32 \
rpcss \
rundll32 \
secedit \
spoolsv \
start \
svchost \

View File

@ -0,0 +1,14 @@
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

22
programs/secedit/main.c Normal file
View File

@ -0,0 +1,22 @@
/*
* 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;
}