drmclien: Add stub dll.
diff --git a/configure b/configure
index ebf519f..a6b0a60 100755
--- a/configure
+++ b/configure
Binary files differ
diff --git a/configure.ac b/configure.ac
index 8ce3686..60bd78e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2131,6 +2131,7 @@
 WINE_CONFIG_MAKEFILE([dlls/dpnhpast/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
 WINE_CONFIG_MAKEFILE([dlls/dpnlobby/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
 WINE_CONFIG_MAKEFILE([dlls/dpwsockx/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
+WINE_CONFIG_MAKEFILE([dlls/drmclien/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
 WINE_CONFIG_MAKEFILE([dlls/dsound/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
 WINE_CONFIG_MAKEFILE([dlls/dsound/tests/Makefile],[dlls/Maketest.rules],[dlls],[ALL_TEST_DIRS],[enable_tests])
 WINE_CONFIG_MAKEFILE([dlls/dssenh/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
diff --git a/dlls/drmclien/Makefile.in b/dlls/drmclien/Makefile.in
new file mode 100644
index 0000000..86dcc38
--- /dev/null
+++ b/dlls/drmclien/Makefile.in
@@ -0,0 +1,13 @@
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+MODULE    = drmclien.dll
+IMPORTS   = kernel32
+
+C_SRCS = \
+	main.c
+
+@MAKE_DLL_RULES@
+
+@DEPENDENCIES@  # everything below this line is overwritten by make depend
diff --git a/dlls/drmclien/drmclien.spec b/dlls/drmclien/drmclien.spec
new file mode 100644
index 0000000..b93472b
--- /dev/null
+++ b/dlls/drmclien/drmclien.spec
@@ -0,0 +1,31 @@
+@ stub DllMain
+@ stub CanDecrypt
+@ stub Decrypt
+@ stub RequestLicense
+@ stub ProcessResponse
+@ stub Bind
+@ stub KeyExchange
+@ stub GetVersion
+@ stub CanDecryptEx
+@ stub BindEx
+@ stub ??0CDRMLiteCrypto@@QAE@XZ
+@ stub ??1CDRMLiteCrypto@@QAE@XZ
+@ stub SetAppSec
+@ stub SetLicenseStore
+@ stub GetPMLicenseFileName
+@ stub GetPMLicenseSize
+@ stub CreatePMLicense
+@ stub GenerateNewLicense
+@ stub Encrypt
+@ stub InitAppCerts
+@ stub QueryXferToPM
+@ stub ?BackupLicenses@CDRMLiteCrypto@@QAEJKPAGPAUIUnknown@@PAHPAX@Z
+@ stub ?EncryptFast@CDRMLiteCrypto@@QAEJPBDKPAE1@Z
+@ stub ?EncryptIndirectFast@CDRMLiteCrypto@@QAEJPBDKPAE1@Z
+@ stub ?GenerateNewLicenseEx@CDRMLiteCrypto@@QAEJKPAE00PAPAD10@Z
+@ stub ?GetLicenses@CDRMLiteCrypto@@QAEJPBDPAUPMLICENSE@@PAKKPAX2PAE@Z
+@ stub ?GetPublicKey@CDRMLiteCrypto@@QAEJPAUPKCERT@@@Z
+@ stub ?QueryXferToPMEx@CDRMLiteCrypto@@QAEJPBDKPAKPAEK2K12@Z
+@ stub ?RestoreLicenses@CDRMLiteCrypto@@QAEJKPAEPAGPAUIUnknown@@PAHPAX@Z
+@ stub DllRegisterServer
+@ stub DllUnregisterServer
diff --git a/dlls/drmclien/main.c b/dlls/drmclien/main.c
new file mode 100644
index 0000000..c18ddad
--- /dev/null
+++ b/dlls/drmclien/main.c
@@ -0,0 +1,42 @@
+/*
+ *
+ * Copyright 2009 Austin English
+ *
+ * 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 "config.h"
+
+#include <stdarg.h>
+
+#include "windef.h"
+#include "winbase.h"
+#include "wine/debug.h"
+
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+{
+    switch (fdwReason)
+    {
+        case DLL_WINE_PREATTACH:
+            return FALSE;    /* prefer native version */
+        case DLL_PROCESS_ATTACH:
+            DisableThreadLibraryCalls(hinstDLL);
+            break;
+        case DLL_PROCESS_DETACH:
+            break;
+    }
+
+    return TRUE;
+}