Commit 3fa635f9 authored by Rico Schüller's avatar Rico Schüller Committed by Alexandre Julliard

msftedit: Add DllGetVersion.

parent ad798735
...@@ -5,6 +5,11 @@ VPATH = @srcdir@ ...@@ -5,6 +5,11 @@ VPATH = @srcdir@
MODULE = msftedit.dll MODULE = msftedit.dll
IMPORTS = uuid riched20 kernel32 IMPORTS = uuid riched20 kernel32
C_SRCS = \
msftedit_main.c
RC_SRCS = version.rc
@MAKE_DLL_RULES@ @MAKE_DLL_RULES@
@DEPENDENCIES@ # everything below this line is overwritten by make depend @DEPENDENCIES@ # everything below this line is overwritten by make depend
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
9 stdcall RichEdit10ANSIWndProc(ptr long long long) riched20.RichEdit10ANSIWndProc 9 stdcall RichEdit10ANSIWndProc(ptr long long long) riched20.RichEdit10ANSIWndProc
10 stdcall RichEditANSIWndProc(ptr long long long) riched20.RichEditANSIWndProc 10 stdcall RichEditANSIWndProc(ptr long long long) riched20.RichEditANSIWndProc
11 stub SetCustomTextOutHandlerEx 11 stub SetCustomTextOutHandlerEx
12 stub DllGetVersion 12 stdcall -private DllGetVersion(ptr)
13 stub RichEditWndProc 13 stub RichEditWndProc
14 stub RichListBoxWndProc 14 stub RichListBoxWndProc
15 stub RichComboBoxWndProc 15 stub RichComboBoxWndProc
/*
* 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;
}
/*
* 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"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment