Austin English : msdrm: Add stub dll.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jan 25 09:27:58 CST 2016


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

Author: Austin English <austinenglish at gmail.com>
Date:   Tue Jan  5 22:07:46 2016 -0600

msdrm: Add stub dll.

Signed-off-by: Austin English <austinenglish at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 configure              |  2 ++
 configure.ac           |  1 +
 dlls/msdrm/Makefile.in |  4 +++
 dlls/msdrm/main.c      | 40 +++++++++++++++++++++++
 dlls/msdrm/msdrm.spec  | 89 ++++++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 136 insertions(+)

diff --git a/configure b/configure
index 0bcb3af..6edecf6 100755
--- a/configure
+++ b/configure
@@ -1176,6 +1176,7 @@ enable_msctfp
 enable_msdaps
 enable_msdelta
 enable_msdmo
+enable_msdrm
 enable_msftedit
 enable_msg711_acm
 enable_msgsm32_acm
@@ -17667,6 +17668,7 @@ wine_fn_config_dll msdaps enable_msdaps clean
 wine_fn_config_dll msdelta enable_msdelta
 wine_fn_config_dll msdmo enable_msdmo implib
 wine_fn_config_test dlls/msdmo/tests msdmo_test
+wine_fn_config_dll msdrm enable_msdrm
 wine_fn_config_dll msftedit enable_msftedit
 wine_fn_config_dll msg711.acm enable_msg711_acm
 wine_fn_config_dll msgsm32.acm enable_msgsm32_acm
diff --git a/configure.ac b/configure.ac
index 2c18819..853277f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3036,6 +3036,7 @@ WINE_CONFIG_DLL(msdaps,,[clean])
 WINE_CONFIG_DLL(msdelta)
 WINE_CONFIG_DLL(msdmo,,[implib])
 WINE_CONFIG_TEST(dlls/msdmo/tests)
+WINE_CONFIG_DLL(msdrm)
 WINE_CONFIG_DLL(msftedit)
 WINE_CONFIG_DLL(msg711.acm)
 WINE_CONFIG_DLL(msgsm32.acm)
diff --git a/dlls/msdrm/Makefile.in b/dlls/msdrm/Makefile.in
new file mode 100644
index 0000000..ada79d5
--- /dev/null
+++ b/dlls/msdrm/Makefile.in
@@ -0,0 +1,4 @@
+MODULE    = msdrm.dll
+
+C_SRCS = \
+	main.c
diff --git a/dlls/msdrm/main.c b/dlls/msdrm/main.c
new file mode 100644
index 0000000..9e6d2e9
--- /dev/null
+++ b/dlls/msdrm/main.c
@@ -0,0 +1,40 @@
+/*
+ * msdrm.dll
+ *
+ * Copyright 2016 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"
+
+BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, void *reserved)
+{
+    switch (reason)
+    {
+        case DLL_WINE_PREATTACH:
+            return FALSE;    /* prefer native version */
+        case DLL_PROCESS_ATTACH:
+            DisableThreadLibraryCalls(instance);
+            break;
+    }
+
+    return TRUE;
+}
diff --git a/dlls/msdrm/msdrm.spec b/dlls/msdrm/msdrm.spec
new file mode 100644
index 0000000..5d4d3d6
--- /dev/null
+++ b/dlls/msdrm/msdrm.spec
@@ -0,0 +1,89 @@
+@ stub DRMAcquireAdvisories
+@ stub DRMAcquireIssuanceLicenseTemplate
+@ stub DRMAcquireLicense
+@ stub DRMActivate
+@ stub DRMAddLicense
+@ stub DRMAddRightWithUser
+@ stub DRMAttest
+@ stub DRMCheckSecurity
+@ stub DRMClearAllRights
+@ stub DRMCloseEnvironmentHandle
+@ stub DRMCloseHandle
+@ stub DRMClosePubHandle
+@ stub DRMCloseQueryHandle
+@ stub DRMCloseSession
+@ stub DRMConstructCertificateChain
+@ stub DRMCreateBoundLicense
+@ stub DRMCreateClientSession
+@ stub DRMCreateEnablingBitsDecryptor
+@ stub DRMCreateEnablingBitsEncryptor
+@ stub DRMCreateEnablingPrincipal
+@ stub DRMCreateIssuanceLicense
+@ stub DRMCreateLicenseStorageSession
+@ stub DRMCreateRight
+@ stub DRMCreateUser
+@ stub DRMDecode
+@ stub DRMDeconstructCertificateChain
+@ stub DRMDecrypt
+@ stub DRMDeleteLicense
+@ stub DRMDuplicateEnvironmentHandle
+@ stub DRMDuplicateHandle
+@ stub DRMDuplicatePubHandle
+@ stub DRMDuplicateSession
+@ stub DRMEncode
+@ stub DRMEncrypt
+@ stub DRMEnumerateLicense
+@ stub DRMGetApplicationSpecificData
+@ stub DRMGetBoundLicenseAttribute
+@ stub DRMGetBoundLicenseAttributeCount
+@ stub DRMGetBoundLicenseObject
+@ stub DRMGetBoundLicenseObjectCount
+@ stub DRMGetCertificateChainCount
+@ stub DRMGetClientVersion
+@ stub DRMGetEnvironmentInfo
+@ stub DRMGetInfo
+@ stub DRMGetIntervalTime
+@ stub DRMGetIssuanceLicenseInfo
+@ stub DRMGetIssuanceLicenseTemplate
+@ stub DRMGetMetaData
+@ stub DRMGetNameAndDescription
+@ stub DRMGetOwnerLicense
+@ stub DRMGetProcAddress
+@ stub DRMGetRevocationPoint
+@ stub DRMGetRightExtendedInfo
+@ stub DRMGetRightInfo
+@ stub DRMGetSecurityProvider
+@ stub DRMGetServiceLocation
+@ stub DRMGetSignedIssuanceLicense
+@ stub DRMGetSignedIssuanceLicenseEx
+@ stub DRMGetTime
+@ stub DRMGetUnboundLicenseAttribute
+@ stub DRMGetUnboundLicenseAttributeCount
+@ stub DRMGetUnboundLicenseObject
+@ stub DRMGetUnboundLicenseObjectCount
+@ stub DRMGetUsagePolicy
+@ stub DRMGetUserInfo
+@ stub DRMGetUserRights
+@ stub DRMGetUsers
+@ stub DRMInitEnvironment
+@ stub DRMIsActivated
+@ stub DRMIsWindowProtected
+@ stub DRMLoadLibrary
+@ stub DRMParseUnboundLicense
+@ stub DRMRegisterContent
+@ stub DRMRegisterProtectedWindow
+@ stub DRMRegisterRevocationList
+@ stub DRMRepair
+@ stub DRMSetApplicationSpecificData
+@ stub DRMSetGlobalOptions
+@ stub DRMSetIntervalTime
+@ stub DRMSetMetaData
+@ stub DRMSetNameAndDescription
+@ stub DRMSetRevocationPoint
+@ stub DRMSetUsagePolicy
+@ stub DRMVerify
+@ stub DllCanUnloadNow
+@ stub DllGetClassObject
+@ stub DllRegisterServer
+@ stub DllUnregisterServer
+@ stub __AddMachineCertToLicenseStore




More information about the wine-cvs mailing list