2000-06-24 14:41:05 +02:00
|
|
|
/*
|
|
|
|
* Win16 BiDi functions
|
2002-03-10 00:29:33 +01:00
|
|
|
* Copyright 2000 Erez Volk
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* NOTE: Right now, most of these functions do nothing.
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2000-06-24 14:41:05 +02:00
|
|
|
#include "windef.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "winbase.h"
|
2000-09-27 00:20:14 +02:00
|
|
|
#include "wine/wingdi16.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2000-06-24 14:41:05 +02:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(gdi);
|
2000-06-24 14:41:05 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* RawTextOut (GDI.530)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI RawTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* RawExtTextOut (GDI.531)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI RawExtTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* RawGetTextExtent (GDI.532)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
LONG WINAPI RawGetTextExtent16(HDC16 hdc, LPCSTR lpszString, INT16 cbString ) {
|
|
|
|
FIXME("(%04hx, %p, %hd): stub\n", hdc, lpszString, cbString);
|
|
|
|
return 0;
|
2000-06-24 14:41:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiLayout (GDI.536)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiLayout16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiCreateTabString (GDI.538)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiCreateTabString16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiGlyphOut (GDI.540)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiGlyphOut16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiGetStringExtent (GDI.543)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiGetStringExtent16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiDeleteString (GDI.555)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiDeleteString16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiSetDefaults (GDI.556)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiSetDefaults16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiGetDefaults (GDI.558)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiGetDefaults16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiShape (GDI.560)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiShape16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiFontComplement (GDI.561)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiFontComplement16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiSetKashida (GDI.564)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiSetKashida16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiKExtTextOut (GDI.565)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiKExtTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiShapeEx (GDI.566)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiShapeEx16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiCreateStringEx (GDI.569)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiCreateStringEx16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* GetTextExtentRtoL (GDI.571)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI GetTextExtentRtoL16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* GetHDCCharSet (GDI.572)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI GetHDCCharSet16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* BiDiLayoutEx (GDI.573)
|
2000-06-24 14:41:05 +02:00
|
|
|
*/
|
|
|
|
LONG WINAPI BiDiLayoutEx16(void) { FIXME("stub (no prototype)\n"); return 0; }
|