mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 22:50:08 +00:00
127 lines
4.6 KiB
C
127 lines
4.6 KiB
C
/*
|
|
* Win16 BiDi functions
|
|
* 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
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*
|
|
* NOTE: Right now, most of these functions do nothing.
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "wine/wingdi16.h"
|
|
#include "wine/debug.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(gdi);
|
|
|
|
/***********************************************************************
|
|
* RawTextOut (GDI.530)
|
|
*/
|
|
LONG WINAPI RawTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* RawExtTextOut (GDI.531)
|
|
*/
|
|
LONG WINAPI RawExtTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* RawGetTextExtent (GDI.532)
|
|
*/
|
|
LONG WINAPI RawGetTextExtent16(HDC16 hdc, LPCSTR lpszString, INT16 cbString ) {
|
|
FIXME("(%04hx, %p, %hd): stub\n", hdc, lpszString, cbString);
|
|
return 0;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* BiDiLayout (GDI.536)
|
|
*/
|
|
LONG WINAPI BiDiLayout16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiCreateTabString (GDI.538)
|
|
*/
|
|
LONG WINAPI BiDiCreateTabString16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiGlyphOut (GDI.540)
|
|
*/
|
|
LONG WINAPI BiDiGlyphOut16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiGetStringExtent (GDI.543)
|
|
*/
|
|
LONG WINAPI BiDiGetStringExtent16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiDeleteString (GDI.555)
|
|
*/
|
|
LONG WINAPI BiDiDeleteString16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiSetDefaults (GDI.556)
|
|
*/
|
|
LONG WINAPI BiDiSetDefaults16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiGetDefaults (GDI.558)
|
|
*/
|
|
LONG WINAPI BiDiGetDefaults16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiShape (GDI.560)
|
|
*/
|
|
LONG WINAPI BiDiShape16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiFontComplement (GDI.561)
|
|
*/
|
|
LONG WINAPI BiDiFontComplement16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiSetKashida (GDI.564)
|
|
*/
|
|
LONG WINAPI BiDiSetKashida16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiKExtTextOut (GDI.565)
|
|
*/
|
|
LONG WINAPI BiDiKExtTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiShapeEx (GDI.566)
|
|
*/
|
|
LONG WINAPI BiDiShapeEx16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiCreateStringEx (GDI.569)
|
|
*/
|
|
LONG WINAPI BiDiCreateStringEx16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* GetTextExtentRtoL (GDI.571)
|
|
*/
|
|
LONG WINAPI GetTextExtentRtoL16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* GetHDCCharSet (GDI.572)
|
|
*/
|
|
LONG WINAPI GetHDCCharSet16(void) { FIXME("stub (no prototype)\n"); return 0; }
|
|
|
|
/***********************************************************************
|
|
* BiDiLayoutEx (GDI.573)
|
|
*/
|
|
LONG WINAPI BiDiLayoutEx16(void) { FIXME("stub (no prototype)\n"); return 0; }
|