mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
Make a few stubs return something to get Dependancy Walker loading.
svn path=/trunk/; revision=8157
This commit is contained in:
parent
f90d73ad9d
commit
ba374c4128
1 changed files with 5 additions and 3 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: text.c,v 1.72 2004/01/29 22:24:51 rcampbell Exp $ */
|
/* $Id: text.c,v 1.73 2004/02/11 21:52:28 sedwards Exp $ */
|
||||||
|
|
||||||
|
|
||||||
#undef WIN32_LEAN_AND_MEAN
|
#undef WIN32_LEAN_AND_MEAN
|
||||||
|
@ -857,7 +857,8 @@ NtGdiGetCharABCWidths(HDC hDC,
|
||||||
UINT LastChar,
|
UINT LastChar,
|
||||||
LPABC abc)
|
LPABC abc)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
DPRINT1("NtGdiGetCharABCWidths Is unimplemented, keep going anyway\n");
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
|
@ -889,7 +890,8 @@ NtGdiGetCharWidth(HDC hDC,
|
||||||
UINT LastChar,
|
UINT LastChar,
|
||||||
LPINT Buffer)
|
LPINT Buffer)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
DPRINT1("NtGdiGetCharWidth isnt really unimplemented - keep going anyway\n");
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL
|
BOOL
|
||||||
|
|
Loading…
Reference in a new issue