Louis Lenders : programs: Add a stubbed out secedit.exe.

Alexandre Julliard julliard at winehq.org
Fri Feb 29 06:16:58 CST 2008


Module: wine
Branch: master
Commit: 6547fef34b33420b6189d097fc1e3d445295f463
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6547fef34b33420b6189d097fc1e3d445295f463

Author: Louis Lenders <xerox_xerox2000 at yahoo.co.uk>
Date:   Tue Feb 26 22:12:40 2008 +0000

programs: Add a stubbed out secedit.exe.

---

 .gitignore                   |    1 +
 Makefile.in                  |    2 ++
 configure                    |    3 +++
 configure.ac                 |    1 +
 programs/Makefile.in         |    2 ++
 programs/secedit/Makefile.in |   14 ++++++++++++++
 programs/secedit/main.c      |   22 ++++++++++++++++++++++
 7 files changed, 45 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index c3b6cca..61d4f61 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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
diff --git a/Makefile.in b/Makefile.in
index 2edfc8d..164763b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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
diff --git a/configure b/configure
index 9e03348..71c9b66 100755
--- a/configure
+++ b/configure
@@ -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" ;;
diff --git a/configure.ac b/configure.ac
index f1071de..014f601 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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])
diff --git a/programs/Makefile.in b/programs/Makefile.in
index 3c128e1..15fd7bd 100644
--- a/programs/Makefile.in
+++ b/programs/Makefile.in
@@ -25,6 +25,7 @@ SUBDIRS = \
 	regsvr32 \
 	rpcss \
 	rundll32 \
+	secedit \
 	spoolsv \
 	start \
 	svchost \
@@ -69,6 +70,7 @@ INSTALLSUBDIRS = \
 	regsvr32 \
 	rpcss \
 	rundll32 \
+	secedit \
 	spoolsv \
 	start \
 	svchost \
diff --git a/programs/secedit/Makefile.in b/programs/secedit/Makefile.in
new file mode 100644
index 0000000..ddebe86
--- /dev/null
+++ b/programs/secedit/Makefile.in
@@ -0,0 +1,14 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+MODULE    = secedit.exe
+APPMODE   = -mconsole
+IMPORTS   = kernel32
+
+C_SRCS = \
+	main.c \
+
+ at MAKE_PROG_RULES@
+
+ at DEPENDENCIES@  # everything below this line is overwritten by make depend
diff --git a/programs/secedit/main.c b/programs/secedit/main.c
new file mode 100644
index 0000000..878adc9
--- /dev/null
+++ b/programs/secedit/main.c
@@ -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;
+}




More information about the wine-cvs mailing list