Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3fa635f9
Commit
3fa635f9
authored
Apr 30, 2008
by
Rico Schüller
Committed by
Alexandre Julliard
May 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msftedit: Add DllGetVersion.
parent
ad798735
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
101 additions
and
1 deletion
+101
-1
Makefile.in
dlls/msftedit/Makefile.in
+5
-0
msftedit.spec
dlls/msftedit/msftedit.spec
+1
-1
msftedit_main.c
dlls/msftedit/msftedit_main.c
+69
-0
version.rc
dlls/msftedit/version.rc
+26
-0
No files found.
dlls/msftedit/Makefile.in
View file @
3fa635f9
...
...
@@ -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
dlls/msftedit/msftedit.spec
View file @
3fa635f9
...
...
@@ -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 st
ub DllGetVersion
12 st
dcall -private DllGetVersion(ptr)
13 stub RichEditWndProc
14 stub RichListBoxWndProc
15 stub RichComboBoxWndProc
dlls/msftedit/msftedit_main.c
0 → 100644
View file @
3fa635f9
/*
* 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
;
}
dlls/msftedit/version.rc
0 → 100644
View file @
3fa635f9
/*
* 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"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment