mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fix called routine names
svn path=/trunk/; revision=6847
This commit is contained in:
parent
01c43b8e32
commit
9b6a56054d
1 changed files with 3 additions and 3 deletions
|
@ -119,7 +119,7 @@ PolyBezier(
|
||||||
DWORD a2
|
DWORD a2
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return PolyBezier(a0,(CONST PPOINT)a1,a2);
|
return NtGdiPolyBezier(a0,(CONST PPOINT)a1,a2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -133,7 +133,7 @@ PolyBezierTo(
|
||||||
DWORD a2
|
DWORD a2
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return PolyBezierTo(a0,(CONST PPOINT)a1,a2);
|
return NtGdiPolyBezierTo(a0,(CONST PPOINT)a1,a2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -148,7 +148,7 @@ PolylineTo(
|
||||||
DWORD a2
|
DWORD a2
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return PolyBezierTo(a0,(CONST PPOINT)a1,a2);
|
return NtGdiPolylineTo(a0,(CONST PPOINT)a1,a2);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue