| 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 ScriptRecordDigitSubstitution(LCID Locale,SCRIPT_DIGITSUBSTITUTE *psds)
|
|---|
| 55 | {
|
|---|
| 56 | FIXME("%ld,%p\n",Locale,psds);
|
|---|
| 57 | return E_NOTIMPL;
|
|---|
| 58 | }
|
|---|
| 59 |
|
|---|
| 60 | HRESULT WINAPI ScriptApplyDigitSubstitution(const SCRIPT_DIGITSUBSTITUTE* psds,
|
|---|
| 61 | SCRIPT_CONTROL* psc, SCRIPT_STATE* pss)
|
|---|
| 62 | {
|
|---|
| 63 | FIXME("%p,%p,%p\n",psds,psc,pss);
|
|---|
| 64 | return E_NOTIMPL;
|
|---|
| 65 | }
|
|---|
| 66 |
|
|---|
| 67 | HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItems,
|
|---|
| 68 | const SCRIPT_CONTROL *psControl, const SCRIPT_STATE *psState,
|
|---|
| 69 | SCRIPT_ITEM *pItems, int *pcItems)
|
|---|
| 70 | {
|
|---|
| 71 | FIXME("%s,%d,%d,%p,%p,%p,%p\n", debugstr_w(pwcInChars), cInChars, cMaxItems,
|
|---|
| 72 | psControl, psState, pItems, pcItems);
|
|---|
| 73 | return E_INVALIDARG;
|
|---|
| 74 | }
|
|---|