Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Win16 BiDi functions |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 3 | * Copyright 2000 Erez Volk |
| 4 | * |
| 5 | * This library is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU Lesser General Public |
| 7 | * License as published by the Free Software Foundation; either |
| 8 | * version 2.1 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | * This library is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 | * Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU Lesser General Public |
| 16 | * License along with this library; if not, write to the Free Software |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 18 | * |
| 19 | * NOTE: Right now, most of these functions do nothing. |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 22 | #include <stdarg.h> |
| 23 | |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 24 | #include "windef.h" |
Alexandre Julliard | e37c6e1 | 2003-09-05 23:08:26 +0000 | [diff] [blame] | 25 | #include "winbase.h" |
Alexandre Julliard | 83f52d1 | 2000-09-26 22:20:14 +0000 | [diff] [blame] | 26 | #include "wine/wingdi16.h" |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 27 | #include "wine/debug.h" |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 28 | |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 29 | WINE_DEFAULT_DEBUG_CHANNEL(gdi); |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 30 | |
| 31 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 32 | * RawTextOut (GDI.530) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 33 | */ |
| 34 | LONG WINAPI RawTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 35 | |
| 36 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 37 | * RawExtTextOut (GDI.531) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 38 | */ |
| 39 | LONG WINAPI RawExtTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 40 | |
| 41 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 42 | * RawGetTextExtent (GDI.532) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 43 | */ |
Vincent BĂ©ron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 44 | LONG WINAPI RawGetTextExtent16(HDC16 hdc, LPCSTR lpszString, INT16 cbString ) { |
| 45 | FIXME("(%04hx, %p, %hd): stub\n", hdc, lpszString, cbString); |
| 46 | return 0; |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 50 | * BiDiLayout (GDI.536) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 51 | */ |
| 52 | LONG WINAPI BiDiLayout16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 53 | |
| 54 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 55 | * BiDiCreateTabString (GDI.538) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 56 | */ |
| 57 | LONG WINAPI BiDiCreateTabString16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 58 | |
| 59 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 60 | * BiDiGlyphOut (GDI.540) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 61 | */ |
| 62 | LONG WINAPI BiDiGlyphOut16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 63 | |
| 64 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 65 | * BiDiGetStringExtent (GDI.543) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 66 | */ |
| 67 | LONG WINAPI BiDiGetStringExtent16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 68 | |
| 69 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 70 | * BiDiDeleteString (GDI.555) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 71 | */ |
| 72 | LONG WINAPI BiDiDeleteString16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 73 | |
| 74 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 75 | * BiDiSetDefaults (GDI.556) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 76 | */ |
| 77 | LONG WINAPI BiDiSetDefaults16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 78 | |
| 79 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 80 | * BiDiGetDefaults (GDI.558) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 81 | */ |
| 82 | LONG WINAPI BiDiGetDefaults16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 83 | |
| 84 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 85 | * BiDiShape (GDI.560) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 86 | */ |
| 87 | LONG WINAPI BiDiShape16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 88 | |
| 89 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 90 | * BiDiFontComplement (GDI.561) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 91 | */ |
| 92 | LONG WINAPI BiDiFontComplement16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 93 | |
| 94 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 95 | * BiDiSetKashida (GDI.564) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 96 | */ |
| 97 | LONG WINAPI BiDiSetKashida16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 98 | |
| 99 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 100 | * BiDiKExtTextOut (GDI.565) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 101 | */ |
| 102 | LONG WINAPI BiDiKExtTextOut16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 103 | |
| 104 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 105 | * BiDiShapeEx (GDI.566) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 106 | */ |
| 107 | LONG WINAPI BiDiShapeEx16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 108 | |
| 109 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 110 | * BiDiCreateStringEx (GDI.569) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 111 | */ |
| 112 | LONG WINAPI BiDiCreateStringEx16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 113 | |
| 114 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 115 | * GetTextExtentRtoL (GDI.571) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 116 | */ |
| 117 | LONG WINAPI GetTextExtentRtoL16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 118 | |
| 119 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 120 | * GetHDCCharSet (GDI.572) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 121 | */ |
| 122 | LONG WINAPI GetHDCCharSet16(void) { FIXME("stub (no prototype)\n"); return 0; } |
| 123 | |
| 124 | /*********************************************************************** |
Patrik Stridvall | 01d5e5b | 2001-07-02 19:59:40 +0000 | [diff] [blame] | 125 | * BiDiLayoutEx (GDI.573) |
Alexandre Julliard | 42acc33 | 2000-06-24 12:41:05 +0000 | [diff] [blame] | 126 | */ |
| 127 | LONG WINAPI BiDiLayoutEx16(void) { FIXME("stub (no prototype)\n"); return 0; } |