msftedit: Add DllGetVersion.
authorRico Schüller <kgbricola@web.de>
Wed, 30 Apr 2008 17:55:25 +0000 (19:55 +0200)
committerAlexandre Julliard <julliard@winehq.org>
Thu, 1 May 2008 12:41:45 +0000 (14:41 +0200)
dlls/msftedit/Makefile.in
dlls/msftedit/msftedit.spec
dlls/msftedit/msftedit_main.c [new file with mode: 0644]
dlls/msftedit/version.rc [new file with mode: 0644]

index 829b83442a9e2b86159421770312eb8fa34795df..d00682aed6d177fda1784b4422597ee67a6ba3c0 100644 (file)
@@ -5,6 +5,11 @@ VPATH     = @srcdir@
 MODULE    = msftedit.dll
 IMPORTS   = uuid riched20 kernel32
 
+C_SRCS = \
+       msftedit_main.c
+
+RC_SRCS = version.rc
+
 @MAKE_DLL_RULES@
 
 @DEPENDENCIES@  # everything below this line is overwritten by make depend
index be36be566dd865d997a9f51d912d04baa53ec214..6f0e9e277f31d9df7ed57d7f57d6e87fe153d954 100644 (file)
@@ -8,7 +8,7 @@
 9 stdcall RichEdit10ANSIWndProc(ptr long long long) riched20.RichEdit10ANSIWndProc
 10 stdcall RichEditANSIWndProc(ptr long long long) riched20.RichEditANSIWndProc
 11 stub SetCustomTextOutHandlerEx
-12 stub DllGetVersion
+12 stdcall -private DllGetVersion(ptr)
 13 stub RichEditWndProc
 14 stub RichListBoxWndProc
 15 stub RichComboBoxWndProc
diff --git a/dlls/msftedit/msftedit_main.c b/dlls/msftedit/msftedit_main.c
new file mode 100644 (file)
index 0000000..7fcb6ee
--- /dev/null
@@ -0,0 +1,69 @@
+/*
+ * msftedit main file
+ *
+ * Copyright (C) 2008 Rico Schüller
+ *
+ * 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 "wine/port.h"
+
+#include <stdarg.h>
+
+#include "windef.h"
+#include "winbase.h"
+#include "wingdi.h"
+#include "winuser.h"
+#include "wine/debug.h"
+
+#include "winreg.h"
+#include "shlwapi.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(msftedit);
+
+/***********************************************************************
+ * DllMain.
+ */
+BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved)
+{
+    switch(reason)
+    {
+    case DLL_WINE_PREATTACH:
+        return FALSE; /* prefer native version */
+    case DLL_PROCESS_ATTACH:
+        DisableThreadLibraryCalls(inst);
+        break;
+    case DLL_PROCESS_DETACH:
+        break;
+    }
+    return TRUE;
+}
+
+/***********************************************************************
+ *              DllGetVersion (msftedit.@)
+ */
+HRESULT WINAPI DllGetVersion(DLLVERSIONINFO *info)
+{
+    if (info->cbSize != sizeof(DLLVERSIONINFO)) FIXME("support DLLVERSIONINFO2\n");
+
+    /* this is what WINXP SP2 reports */
+    info->dwMajorVersion = 41;
+    info->dwMinorVersion = 15;
+    info->dwBuildNumber = 1507;
+    info->dwPlatformID = 1;
+    return NOERROR;
+}
diff --git a/dlls/msftedit/version.rc b/dlls/msftedit/version.rc
new file mode 100644 (file)
index 0000000..ce5ef0e
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2008 Rico Schüller
+ *
+ * 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
+ */
+
+#define WINE_FILEDESCRIPTION_STR "Rich Text Edit Control"
+#define WINE_FILENAME_STR "msftedit.dll"
+#define WINE_FILEVERSION 5,41,15,1509
+#define WINE_FILEVERSION_STR "5,41,15,1509"
+#define WINE_PRODUCTVERSION 5,41,15,1509
+#define WINE_PRODUCTVERSION_STR "5,41,15,1509"
+
+#include "wine/wine_common_ver.rc"