4 * This module is a simple wrapper for the RichEdit 2.0 control
6 * Copyright 2000 by Jean-Claude Batista
7 * Copyright 2005 Mike McCormack
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(richedit
);
39 /* Window procedure of the RichEdit 1.0 control in riched20.dll */
40 extern LRESULT WINAPI
RichEdit10ANSIWndProc(HWND
, UINT
, WPARAM
, LPARAM
);
43 /* Registers the window class. */
44 static BOOL
RICHED32_Register(void)
48 ZeroMemory(&wndClass
, sizeof(WNDCLASSA
));
49 wndClass
.style
= CS_DBLCLKS
| CS_HREDRAW
| CS_VREDRAW
| CS_GLOBALCLASS
;
50 wndClass
.lpfnWndProc
= RichEdit10ANSIWndProc
;
51 wndClass
.cbClsExtra
= 0;
52 wndClass
.cbWndExtra
= sizeof(void *);
53 wndClass
.hCursor
= LoadCursorA(0, (LPSTR
)IDC_ARROW
);
54 wndClass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+ 1);
55 wndClass
.lpszClassName
= RICHEDIT_CLASS10A
; /* WC_RICHED32A; */
57 RegisterClassA(&wndClass
);
62 /* Initialization function */
63 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
68 case DLL_PROCESS_ATTACH
:
69 DisableThreadLibraryCalls(hinstDLL
);
70 return RICHED32_Register();
72 case DLL_PROCESS_DETACH
:
73 if (lpvReserved
) break;
74 UnregisterClassA(RICHEDIT_CLASS10A
, NULL
);
80 /***********************************************************************
81 * DllGetVersion [RICHED32.2]
83 * Retrieves version information
85 HRESULT WINAPI
DllGetVersion (DLLVERSIONINFO
*pdvi
)
89 if (pdvi
->cbSize
!= sizeof(DLLVERSIONINFO
))
92 pdvi
->dwMajorVersion
= 4;
93 pdvi
->dwMinorVersion
= 0;
94 pdvi
->dwBuildNumber
= 0;
95 pdvi
->dwPlatformID
= 0;