Roy Shea : mstask: Generate C file with GUID definitions from mstask.idl.

Alexandre Julliard julliard at winehq.org
Mon Jul 21 08:52:27 CDT 2008


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

Author: Roy Shea <royshea at gmail.com>
Date:   Thu Jul 17 16:52:02 2008 -0700

mstask: Generate C file with GUID definitions from mstask.idl.

---

 .gitignore                   |    2 ++
 dlls/mstask/Makefile.in      |    2 ++
 dlls/mstask/mstask_local.idl |   19 +++++++++++++++++++
 3 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
index ab49a43..a60cefd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -57,6 +57,8 @@ dlls/msi/msiserver.tlb
 dlls/msi/msiserver_i.c
 dlls/msi/sql.tab.c
 dlls/msi/sql.tab.h
+dlls/mstask/mstask_local.h
+dlls/mstask/mstask_local_i.c
 dlls/msvideo.dll16
 dlls/msxml3/msxml3_v1.tlb
 dlls/ole2.dll16
diff --git a/dlls/mstask/Makefile.in b/dlls/mstask/Makefile.in
index 2fd0a66..f05d63f 100644
--- a/dlls/mstask/Makefile.in
+++ b/dlls/mstask/Makefile.in
@@ -8,6 +8,8 @@ IMPORTS   = kernel32
 C_SRCS = \
 	mstask_main.c
 
+IDL_I_SRCS = mstask_local.idl
+
 @MAKE_DLL_RULES@
 
 @DEPENDENCIES@  # everything below this line is overwritten by make depend
diff --git a/dlls/mstask/mstask_local.idl b/dlls/mstask/mstask_local.idl
new file mode 100644
index 0000000..b1a044a
--- /dev/null
+++ b/dlls/mstask/mstask_local.idl
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2008 Google (Roy Shea)
+ *
+ * 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 "mstask.idl"




More information about the wine-cvs mailing list