Fixed exception handling on MacOS.
[wine] / dlls / usp10 / usp10.c
1 /*
2  * Implementation of Uniscribe Script Processor (usp10.dll)
3  *
4  * Copyright 2005 Steven Edwards for CodeWeavers
5  *
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.
10  *
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.
15  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * Notes:
21  * Uniscribe allows for processing of complex scripts such as joining
22  * and filtering characters and bi-directional text with custom line breaks.
23  */
24
25 #include <stdarg.h>
26
27 #include "windef.h"
28 #include "winbase.h"
29 #include "winuser.h"
30 #include "usp10.h"
31
32 #include "wine/debug.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(uniscribe);
35
36 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
37 {
38     switch(fdwReason) {
39         case DLL_PROCESS_ATTACH:
40             DisableThreadLibraryCalls(hInstDLL);
41             break;
42         case DLL_PROCESS_DETACH:
43             break;
44     }
45     return TRUE;
46 }
47
48 HRESULT WINAPI ScriptGetProperties(const SCRIPT_PROPERTIES ***ppSp, int *piNumScripts)
49 {
50     FIXME("%p,%p\n",ppSp,piNumScripts);
51     return E_NOTIMPL;
52 }
53
54 HRESULT WINAPI ScriptGetFontProperties(HDC hdc, SCRIPT_CACHE *psc, SCRIPT_FONTPROPERTIES *sfp)
55 {
56     FIXME("%p,%p,%p\n", hdc, psc, sfp);
57     /* return something sensible? */
58     if (NULL != sfp) {
59         sfp->cBytes        = sizeof(SCRIPT_FONTPROPERTIES);
60         sfp->wgBlank       = 0;
61         sfp->wgDefault     = 0;
62         sfp->wgInvalid     = 0;
63         sfp->wgKashida     = 1;
64         sfp->iKashidaWidth = 0;
65     }
66     return 0;
67 }
68
69 HRESULT WINAPI ScriptRecordDigitSubstitution(LCID Locale,SCRIPT_DIGITSUBSTITUTE *psds)
70 {
71     FIXME("%ld,%p\n",Locale,psds);
72     return E_NOTIMPL;
73 }
74
75 HRESULT WINAPI ScriptApplyDigitSubstitution(const SCRIPT_DIGITSUBSTITUTE* psds, 
76                                             SCRIPT_CONTROL* psc, SCRIPT_STATE* pss)
77 {
78     FIXME("%p,%p,%p\n",psds,psc,pss);
79     return E_NOTIMPL;
80 }
81
82 HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItems, 
83                              const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState, 
84                              SCRIPT_ITEM *pItems, int *pcItems)
85 {
86     FIXME("%s,%d,%d,%p,%p,%p,%p\n", debugstr_w(pwcInChars), cInChars, cMaxItems, 
87           psControl, psState, pItems, pcItems);
88     return E_INVALIDARG;
89 }