Rob Shearman : adsiid: Add static import library for active directory GUIDs .

Alexandre Julliard julliard at winehq.org
Thu Mar 6 11:08:37 CST 2008


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

Author: Rob Shearman <rob at codeweavers.com>
Date:   Thu Mar  6 15:01:34 2008 +0000

adsiid: Add static import library for active directory GUIDs.

---

 Makefile.in             |    2 ++
 configure               |    3 +++
 configure.ac            |    1 +
 dlls/Makefile.in        |    3 +++
 dlls/adsiid/Makefile.in |   12 ++++++++++++
 dlls/adsiid/adsiid.c    |   27 +++++++++++++++++++++++++++
 6 files changed, 48 insertions(+), 0 deletions(-)

diff --git a/Makefile.in b/Makefile.in
index 164763b..6b22eb0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -160,6 +160,7 @@ ALL_MAKEFILES = \
 	dlls/acledit/Makefile \
 	dlls/activeds/Makefile \
 	dlls/actxprxy/Makefile \
+	dlls/adsiid/Makefile \
 	dlls/advapi32/Makefile \
 	dlls/advapi32/tests/Makefile \
 	dlls/advpack/Makefile \
@@ -576,6 +577,7 @@ dlls/Makefile: dlls/Makefile.in Make.rules
 dlls/acledit/Makefile: dlls/acledit/Makefile.in dlls/Makedll.rules
 dlls/activeds/Makefile: dlls/activeds/Makefile.in dlls/Makedll.rules
 dlls/actxprxy/Makefile: dlls/actxprxy/Makefile.in dlls/Makedll.rules
+dlls/adsiid/Makefile: dlls/adsiid/Makefile.in dlls/Makeimplib.rules
 dlls/advapi32/Makefile: dlls/advapi32/Makefile.in dlls/Makedll.rules
 dlls/advapi32/tests/Makefile: dlls/advapi32/tests/Makefile.in dlls/Maketest.rules
 dlls/advpack/Makefile: dlls/advpack/Makefile.in dlls/Makedll.rules
diff --git a/configure b/configure
index 7be6eb1..edcabe9 100755
--- a/configure
+++ b/configure
@@ -21182,6 +21182,8 @@ ac_config_files="$ac_config_files dlls/activeds/Makefile"
 
 ac_config_files="$ac_config_files dlls/actxprxy/Makefile"
 
+ac_config_files="$ac_config_files dlls/adsiid/Makefile"
+
 ac_config_files="$ac_config_files dlls/advapi32/Makefile"
 
 ac_config_files="$ac_config_files dlls/advapi32/tests/Makefile"
@@ -22548,6 +22550,7 @@ do
     "dlls/acledit/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/acledit/Makefile" ;;
     "dlls/activeds/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/activeds/Makefile" ;;
     "dlls/actxprxy/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/actxprxy/Makefile" ;;
+    "dlls/adsiid/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/adsiid/Makefile" ;;
     "dlls/advapi32/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/advapi32/Makefile" ;;
     "dlls/advapi32/tests/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/advapi32/tests/Makefile" ;;
     "dlls/advpack/Makefile") CONFIG_FILES="$CONFIG_FILES dlls/advpack/Makefile" ;;
diff --git a/configure.ac b/configure.ac
index 3234493..c2d628b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1664,6 +1664,7 @@ AC_CONFIG_FILES([dlls/Makefile])
 AC_CONFIG_FILES([dlls/acledit/Makefile])
 AC_CONFIG_FILES([dlls/activeds/Makefile])
 AC_CONFIG_FILES([dlls/actxprxy/Makefile])
+AC_CONFIG_FILES([dlls/adsiid/Makefile])
 AC_CONFIG_FILES([dlls/advapi32/Makefile])
 AC_CONFIG_FILES([dlls/advapi32/tests/Makefile])
 AC_CONFIG_FILES([dlls/advpack/Makefile])
diff --git a/dlls/Makefile.in b/dlls/Makefile.in
index d294a19..9ed67df 100644
--- a/dlls/Makefile.in
+++ b/dlls/Makefile.in
@@ -271,6 +271,7 @@ BASEDIRS = \
 	wtsapi32
 
 IMPLIBSUBDIRS = \
+	adsiid \
 	dxerr8 \
 	dxerr9 \
 	dxguid \
@@ -523,6 +524,7 @@ IMPORT_SYMLINKS = \
 
 IMPORT_LIBS = \
 	$(IMPORT_SYMLINKS) \
+	adsiid/libadsiid.a \
 	dxerr8/libdxerr8.a \
 	dxerr9/libdxerr9.a \
 	dxguid/libdxguid.a \
@@ -1073,6 +1075,7 @@ $(INSTALLSUBDIRS:%=%/__install__) $(INSTALLSUBDIRS:%=%/__install-lib__): $(IMPOR
 
 # Map library name to the corresponding directory
 
+adsiid/libadsiid.a: adsiid
 dxerr8/libdxerr8.a: dxerr8
 dxerr9/libdxerr9.a: dxerr9
 dxguid/libdxguid.a: dxguid
diff --git a/dlls/adsiid/Makefile.in b/dlls/adsiid/Makefile.in
new file mode 100644
index 0000000..099b811
--- /dev/null
+++ b/dlls/adsiid/Makefile.in
@@ -0,0 +1,12 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+MODULE    = libadsiid.a
+
+C_SRCS = \
+	adsiid.c
+
+ at MAKE_IMPLIB_RULES@
+
+ at DEPENDENCIES@  # everything below this line is overwritten by make depend
diff --git a/dlls/adsiid/adsiid.c b/dlls/adsiid/adsiid.c
new file mode 100644
index 0000000..e4e85d8
--- /dev/null
+++ b/dlls/adsiid/adsiid.c
@@ -0,0 +1,27 @@
+/*
+ * Active Directory GUID definitions
+ *
+ * Copyright 2008 Robert Shearman
+ *
+ * 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 <stdarg.h>
+
+#include "windef.h"
+#include "objbase.h"
+#include "initguid.h"
+
+#include "iads.h"




More information about the wine-cvs mailing list