makefiles: Explicitly create destination dirs when installing symlinks.
[wine/zf.git] / dlls / msftedit / msftedit_main.c
blobfbad7182a5b2376ba3f2aedd694a8276d3909569
1 /*
2 * msftedit main file
4 * Copyright (C) 2008 Rico Schüller
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <stdarg.h>
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winreg.h"
27 #include "wingdi.h"
28 #include "winuser.h"
29 #include "richedit.h"
30 #include "imm.h"
31 #include "shlwapi.h"
32 #include "oleidl.h"
33 #include "initguid.h"
34 #include "textserv.h"
36 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(msftedit);
40 /***********************************************************************
41 * DllMain.
43 BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved)
45 static HMODULE richedit;
47 switch(reason)
49 case DLL_WINE_PREATTACH:
50 return FALSE; /* prefer native version */
51 case DLL_PROCESS_ATTACH:
52 /* explicitly load riched20 since it creates the window classes at dll attach time */
53 richedit = LoadLibraryW( L"riched20.dll" );
54 DisableThreadLibraryCalls(inst);
55 break;
56 case DLL_PROCESS_DETACH:
57 FreeLibrary( richedit );
58 break;
60 return TRUE;
63 /***********************************************************************
64 * DllGetVersion (msftedit.@)
66 HRESULT WINAPI DllGetVersion(DLLVERSIONINFO *info)
68 if (info->cbSize != sizeof(DLLVERSIONINFO)) FIXME("support DLLVERSIONINFO2\n");
70 /* this is what WINXP SP2 reports */
71 info->dwMajorVersion = 41;
72 info->dwMinorVersion = 15;
73 info->dwBuildNumber = 1507;
74 info->dwPlatformID = 1;
75 return NOERROR;