Files
harbour-core/harbour/contrib/hbwhat32/_windraw.c
Viktor Szakats e7d2031895 2007-12-01 02:55 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/make_b32_all.bat
   * contrib/make_vc_all.bat
   * contrib/Makefile
   - contrib/telepath
   + contrib/hbtpathy
   * contrib/hbtpathy/common.mak
   * contrib/hbtpathy/Makefile
   - contrib/what32
   + contrib/hbwhat32
   - contrib/win32
   + contrib/hbw32
   * contrib/hbw32/common.mak
   * contrib/hbw32/Makefile
   - contrib/adordd
   + contrib/hbrddado
   - contrib/gtwvg
   + contrib/hbgtwvg
   - contrib/rdd_ads
   + contrib/hbrddads
   - contrib/tip
   + contrib/hbtip
   * contrib/hbtip/common.mak
   * contrib/hbtip/Makefile
   - contrib/bmdbfcdx
   + contrib/hbbmcdx
   * contrib/hbct/Makefile
   * contrib/hbct/common.mak
   * contrib/hbgt/common.mak
   * contrib/hbgt/Makefile
   * contrib/hbnf/common.mak
   * contrib/hbnf/Makefile
     * Contrib lib rename finished.
     ; Please report build (or other) problems.
2007-12-01 01:56:25 +00:00

1018 lines
22 KiB
C

/*
* $Id$
*/
// What32.Lib
// Graphics & Drawing
#define HB_OS_WIN_32_USED
#define _WIN32_WINNT 0x0400
#include <windows.h>
#include "item.api"
#include "hbapi.h"
extern PHB_ITEM Rect2Array( RECT *rc );
extern BOOL Array2Rect(PHB_ITEM aRect, RECT *rc );
extern PHB_ITEM Point2Array( POINT *pt );
extern BOOL Array2Point(PHB_ITEM aPoint, POINT *pt );
//-----------------------------------------------------------------------------
// Syntax:
// MoveTo( x, y ) -> lSuccess
HB_FUNC( MOVETO )
{
hb_retl( MoveToEx(
(HDC) hb_parnl(1), // device context handle
hb_parni(2) , // x-coordinate of line's ending point
hb_parni(3) , // y-coordinate of line's ending point
NULL
) );
}
//-----------------------------------------------------------------------------
// SYNTAX:
// MoveTo(hDC, x, y) -> aOldPoint or NIL
HB_FUNC( MOVETOEX )
{
POINT Point ;
PHB_ITEM aPt;
if ( MoveToEx(
(HDC) hb_parnl(1), // device context handle
hb_parni(2) , // x-coordinate of line's ending point
hb_parni(3) , // y-coordinate of line's ending point
&Point
) )
{
aPt = Point2Array(&Point) ;
_itemReturn( aPt );
_itemRelease( aPt );
}
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI GetCurrentPositionEx( IN HDC OUT LPPOINT);
// SYNTAX:
// GetCurrentPositionEx(hDC) -> aPoint or NIL
HB_FUNC( GETCURRENTPOSITIONEX )
{
POINT pt ;
PHB_ITEM aPt;
if ( GetCurrentPositionEx( (HDC) hb_parnl( 1 ), &pt ) )
{
aPt = Point2Array( &pt) ;
_itemReturn( aPt );
_itemRelease( aPt );
}
}
//-----------------------------------------------------------------------------
// WINGDIAPI int WINAPI GetPixelFormat( IN HDC);
HB_FUNC( GETPIXELFORMAT )
{
hb_retni( GetPixelFormat( (HDC) hb_parnl( 1 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI SetPixelFormat(IN HDC, IN int, IN CONST PIXELFORMATDESCRIPTOR *);
// uses structure
HB_FUNC( SETPIXELFORMAT )
{
PIXELFORMATDESCRIPTOR *pfd = (PIXELFORMATDESCRIPTOR * ) hb_parc( 3 ); //hb_param( 3, HB_IT_STRING )->item.asString.value;
hb_retl( SetPixelFormat( (HDC) hb_parnl( 1 ) ,
hb_parni( 2 ) ,
pfd
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI int WINAPI DescribePixelFormat( IN HDC, IN int, IN UINT, OUT LPPIXELFORMATDESCRIPTOR);
// uses structures
// syntax:
// DescribePixelFormat(hDC,nPixelFormat,@cDesc) -> nMaxPixFormat //PIXELFORMATDESCRIPTOR structure
HB_FUNC( DESCRIBEPIXELFORMAT )
{
PIXELFORMATDESCRIPTOR pfd ;
UINT nBytes = sizeof(pfd);
hb_retni( DescribePixelFormat( (HDC) hb_parnl( 1 ) ,
hb_parni( 2 ) ,
nBytes ,
&pfd
) ) ;
if ( ISBYREF(3) )
hb_storclen( (char*) &pfd, sizeof(PIXELFORMATDESCRIPTOR), 3 ) ;
//hb_itemPutCRaw( hb_param( -1, HB_IT_ANY ), (char *) pfd , sizeof( PIXELFORMATDESCRIPTOR ) );
}
//-----------------------------------------------------------------------------
// WINGDIAPI COLORREF WINAPI SetPixel(IN HDC, IN int, IN int, IN COLORREF);
HB_FUNC( SETPIXEL )
{
hb_retnl( (ULONG) SetPixel( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
(COLORREF) hb_parnl( 4 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI COLORREF WINAPI GetPixel( IN HDC, IN int, IN int);
HB_FUNC( GETPIXEL )
{
hb_retnl( (ULONG) GetPixel( (HDC) hb_parnl( 1 ), hb_parni( 2 ), hb_parni( 3 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI SetPixelV(IN HDC, IN int, IN int, IN COLORREF);
HB_FUNC( SETPIXELV )
{
hb_retl( SetPixelV( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
(COLORREF) hb_parnl( 4 )
) ) ;
}
//////////////////////////
// Lines and Curves
/////////////////////////
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI LineTo( IN HDC, IN int, IN int);
HB_FUNC( LINETO )
{
hb_retl( LineTo( (HDC) hb_parnl( 1 ), hb_parni( 2 ), hb_parni( 3 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI LineDDA( IN int, IN int, IN int, IN int, IN LINEDDAPROC, IN LPARAM);
/*
TBD : Do callback functions first
HB_FUNC( LINEDDA )
{
LINEDDAPROC LineddaProc ;
LPARAM lParam ;
// Your code goes here
hb_retl( LineDDA( hb_parni( 1 ),
hb_parni( 2 ),
hb_parni( 3 ),
hb_parni( 4 ),
LineddaProc ,
lParam
) ) ;
}
*/
//-----------------------------------------------------------------------------
// WINGDIAPI int WINAPI GetArcDirection(IN HDC);
HB_FUNC( GETARCDIRECTION )
{
hb_retni( GetArcDirection( (HDC) hb_parnl( 1 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI int WINAPI SetArcDirection(IN HDC, IN int);
HB_FUNC( SETARCDIRECTION )
{
hb_retni( SetArcDirection( (HDC) hb_parnl( 1 ), hb_parni( 2 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI Arc( IN HDC, IN int, IN int, IN int, IN int, IN int, IN int, IN int, IN int);
HB_FUNC( ARC )
{
hb_retl( Arc( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
hb_parni( 4 ) ,
hb_parni( 5 ) ,
hb_parni( 6 ) ,
hb_parni( 7 ) ,
hb_parni( 8 ) ,
hb_parni( 9 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI ArcTo( IN HDC, IN int, IN int, IN int, IN int, IN int, IN int, IN int, IN int);
// NT ??
/*
HB_FUNC( ARCTO )
{
hb_retl( ArcTo( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
hb_parni( 4 ) ,
hb_parni( 5 ) ,
hb_parni( 6 ) ,
hb_parni( 7 ) ,
hb_parni( 8 ) ,
hb_parni( 9 )
) ) ;
}
*/
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI Polyline( IN HDC, IN CONST POINT *, IN int);
// Syntax:
// PolyLine(hDC,aPoints) -> lSuccess
HB_FUNC( POLYLINE )
{
POINT * Point ;
POINT pt ;
DWORD iCount ;
UINT i ;
PHB_ITEM aParam ;
PHB_ITEM aSub ;
if (ISARRAY( 2 ) )
{
iCount = (DWORD) hb_parinfa( 2, 0 ) ;
Point = (POINT *) hb_xgrab( iCount * sizeof (POINT) ) ;
aParam = hb_param(2,HB_IT_ARRAY);
for ( i = 0 ; i<iCount ; i++ )
{
aSub = hb_itemArrayGet( aParam, i+1 );
if ( Array2Point(aSub, &pt ))
{
*(Point+i) = pt ;
_itemRelease( aSub );
}
else
{
hb_retl(0);
hb_xfree(Point);
_itemRelease( aSub );
return ;
}
}
hb_retl( Polyline( (HDC) hb_parnl( 1 ), Point, iCount ) ) ;
hb_xfree(Point);
}
else
hb_retl( 0 );
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI PolylineTo( IN HDC, IN CONST POINT *, IN DWORD);
// SYNTAX:
// PolyLineTo(hDC,aPoints)->lSuccess
HB_FUNC( POLYLINETO )
{
POINT * Point ;
POINT pt ;
DWORD iCount ;
UINT i ;
PHB_ITEM aParam ;
PHB_ITEM aSub ;
if (ISARRAY( 2 ) )
{
iCount = (DWORD) hb_parinfa( 2, 0 ) ;
Point = (POINT *) hb_xgrab( iCount * sizeof (POINT) ) ;
aParam = hb_param(2,HB_IT_ARRAY);
for ( i = 0 ; i<iCount ; i++ )
{
aSub = hb_itemArrayGet( aParam, i+1 );
if ( Array2Point(aSub, &pt ))
{
*(Point+i) = pt ;
_itemRelease( aSub );
}
else
{
hb_retl(0);
hb_xfree(Point);
_itemRelease( aSub );
return ;
}
}
hb_retl( PolylineTo( (HDC) hb_parnl( 1 ), Point, iCount ) ) ;
hb_xfree(Point);
}
else
hb_retl( 0 );
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI PolyPolyline( IN HDC, IN CONST POINT *, IN CONST DWORD *, IN DWORD);
// SYNTAX:
// PolyPolyLine(hDC,aPoints,aQtyPoints)->lSuccess
HB_FUNC( POLYPOLYLINE )
{
POINT * Point ;
DWORD * PolyPoints ;
DWORD iPolyCount ;
DWORD iCount ;
POINT pt ;
UINT i ;
PHB_ITEM aParam ;
PHB_ITEM aSub ;
if (ISARRAY( 2 ) && ISARRAY( 3 ) )
{
iPolyCount = hb_parinfa(3,0) ;
PolyPoints = (DWORD *) hb_xgrab( iPolyCount * sizeof( DWORD ) ) ;
for ( i=0 ; i < iPolyCount ; i++ )
{
*(PolyPoints+i) = hb_parnl( 3,i+1) ;
}
iCount = hb_parinfa( 2, 0 ) ;
Point = (POINT *) hb_xgrab( iCount * sizeof (POINT) ) ;
aParam = hb_param(2,HB_IT_ARRAY);
for ( i = 0 ; i<iCount ; i++ )
{
aSub = hb_itemArrayGet( aParam, i+1 );
if ( Array2Point(aSub, &pt ))
{
*(Point+i) = pt ;
_itemRelease( aSub );
}
else
{
hb_retl(0);
hb_xfree(PolyPoints);
hb_xfree(Point);
_itemRelease( aSub );
return ;
}
}
hb_retl( PolyPolyline( (HDC) hb_parnl( 1 ), Point, PolyPoints, iPolyCount ) ) ;
hb_xfree(PolyPoints);
hb_xfree(Point);
}
else
hb_retl( 0 );
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI PolyDraw(IN HDC, IN CONST POINT *, IN CONST BYTE *, IN int);
// SYNTAX
// PolyDraw(hDC,aPoints,cBytes) - > lSuccess
// Great Function !!!
// NT ?
/*
HB_FUNC( POLYDRAW )
{
CONST POINT ;
CONST BYTE ;
POINT * Point ;
DWORD * PolyPoints ;
DWORD iPolyCount ;
DWORD iCount ;
POINT pt ;
UINT i ;
PHB_ITEM aParam ;
PHB_ITEM aSub ;
if (ISARRAY( 2 ) && ISCHAR( 3 ) )
{
iCount = hb_parinfa( 2, 0 ) ;
if ( iCount == hb_parclen( 3 ) )
{
Point = (POINT *) hb_xgrab( iCount * sizeof (POINT) ) ;
aParam = hb_param(2,HB_IT_ARRAY);
for ( i = 0 ; i<iCount ; i++ )
{
aSub = hb_itemArrayGet( aParam, i+1 );
if ( Array2Point(aSub, &pt ))
{
*(Point+i) = pt ;
_itemRelease( aSub );
}
else
{
hb_retl(0);
hb_xfree(PolyPoints);
hb_xfree(Point);
_itemRelease( aSub );
return ;
}
}
hb_retl( PolyPolyline( (HDC) hb_parnl( 1 ), Point, PolyPoints, iPolyCount ) ) ;
hb_retl( PolyDraw( (HDC) hb_parnl( 1 ), Point, hb_parcx( 3 ) , iCount ) ) ;
hb_xfree(PolyPoints);
hb_xfree(Point);
}
}
else
hb_retl( 0 );
}
*/
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI PolyBezier( IN HDC, IN CONST POINT *, IN DWORD);
// Syntax
// PolyBezier(hDC,aPoints) -> lSuccess
HB_FUNC( POLYBEZIER )
{
POINT * Point ;
POINT pt ;
DWORD iCount ;
UINT i ;
PHB_ITEM aParam ;
PHB_ITEM aSub ;
if (ISARRAY( 2 ) )
{
iCount = (DWORD) hb_parinfa( 2, 0 ) ;
Point = (POINT *) hb_xgrab( iCount * sizeof (POINT) ) ;
aParam = hb_param(2,HB_IT_ARRAY);
for ( i = 0 ; i<iCount ; i++ )
{
aSub = hb_itemArrayGet( aParam, i+1 );
if ( Array2Point(aSub, &pt ))
{
*(Point+i) = pt ;
_itemRelease( aSub );
}
else
{
hb_retl(0);
hb_xfree(Point);
_itemRelease( aSub );
return ;
}
}
hb_retl( PolyBezier( (HDC) hb_parnl( 1 ), Point, iCount ) ) ;
hb_xfree(Point);
}
else
hb_retl( 0 );
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI PolyBezierTo( IN HDC, IN CONST POINT *, IN DWORD);
// Syntax
// PolyBezierTo(hDC,aPoints) -> lSuccess
HB_FUNC( POLYBEZIERTO )
{
POINT * Point ;
POINT pt ;
DWORD iCount ;
UINT i ;
PHB_ITEM aParam ;
PHB_ITEM aSub ;
if (ISARRAY( 2 ) )
{
iCount = (DWORD) hb_parinfa( 2, 0 ) ;
Point = (POINT *) hb_xgrab( iCount * sizeof (POINT) ) ;
aParam = hb_param(2,HB_IT_ARRAY);
for ( i = 0 ; i<iCount ; i++ )
{
aSub = hb_itemArrayGet( aParam, i+1 );
if ( Array2Point(aSub, &pt ))
{
*(Point+i) = pt ;
_itemRelease( aSub );
}
else
{
hb_retl(0);
hb_xfree(Point);
_itemRelease( aSub );
return ;
}
}
hb_retl( PolyBezierTo( (HDC) hb_parnl( 1 ), Point, iCount ) ) ;
hb_xfree(Point);
}
else
hb_retl( 0 );
}
///////////////////////
// Filled Shapes
///////////////////////
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI Rectangle(IN HDC, IN int, IN int, IN int, IN int);
HB_FUNC( RECTANGLE )
{
hb_retl( Rectangle( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
hb_parni( 4 ) ,
hb_parni( 5 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI RoundRect(IN HDC, IN int, IN int, IN int, IN int, IN int, IN int);
HB_FUNC( ROUNDRECT )
{
hb_retl( RoundRect( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
hb_parni( 4 ) ,
hb_parni( 5 ) ,
hb_parni( 6 ) ,
hb_parni( 7 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI Chord( IN HDC, IN int, IN int, IN int, IN int, IN int, IN int, IN int, IN int);
HB_FUNC( CHORD )
{
hb_retl( Chord( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
hb_parni( 4 ) ,
hb_parni( 5 ) ,
hb_parni( 6 ) ,
hb_parni( 7 ) ,
hb_parni( 8 ) ,
hb_parni( 9 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI Pie(IN HDC, IN int, IN int, IN int, IN int, IN int, IN int, IN int, IN int);
HB_FUNC( PIE )
{
hb_retl( Pie( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
hb_parni( 4 ) ,
hb_parni( 5 ) ,
hb_parni( 6 ) ,
hb_parni( 7 ) ,
hb_parni( 8 ) ,
hb_parni( 9 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI Ellipse( IN HDC, IN int, IN int, IN int, IN int);
HB_FUNC( ELLIPSE )
{
hb_retl( Ellipse( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
hb_parni( 4 ) ,
hb_parni( 5 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI Polygon( IN HDC, IN CONST POINT *, IN int);
// SYNTAX:
// Polygon(hDC,aPoints) -> lSuccess
HB_FUNC( POLYGON )
{
POINT * Point ;
POINT pt ;
int iCount ;
int i ;
PHB_ITEM aParam ;
PHB_ITEM aSub ;
if (ISARRAY( 2 ) )
{
iCount = (int) hb_parinfa( 2, 0 ) ;
Point = (POINT *) hb_xgrab( iCount * sizeof (POINT) ) ;
aParam = hb_param(2,HB_IT_ARRAY);
for ( i = 0 ; i<iCount ; i++ )
{
aSub = hb_itemArrayGet( aParam, i+1 );
if ( Array2Point(aSub, &pt ))
{
*(Point+i) = pt ;
_itemRelease( aSub );
}
else
{
hb_retl(0);
hb_xfree(Point);
_itemRelease( aSub );
return ;
}
}
hb_retl( Polygon( (HDC) hb_parnl( 1 ), Point, iCount ) ) ;
hb_xfree(Point);
}
else
hb_retl( 0 );
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI PolyPolygon(IN HDC, IN CONST POINT *, IN CONST INT *, IN int);
// SYNTAX
// PolyPolygon(hDC,aPoints,aQtyPoints) -> lSuccess
HB_FUNC( POLYPOLYGON )
{
POINT * Point ;
INT * PolyPoints ;
int iPolyCount ;
int iCount ;
POINT pt ;
int i ;
PHB_ITEM aParam ;
PHB_ITEM aSub ;
if (ISARRAY( 2 ) && ISARRAY( 3 ) )
{
iPolyCount = hb_parinfa(3,0) ;
PolyPoints = ( INT *) hb_xgrab( iPolyCount * sizeof( INT ) ) ;
for ( i=0 ; i < iPolyCount ; i++ )
{
*(PolyPoints+i) = hb_parni( 3,i+1) ;
}
iCount = hb_parinfa( 2, 0 ) ;
Point = (POINT *) hb_xgrab( iCount * sizeof (POINT) ) ;
aParam = hb_param(2,HB_IT_ARRAY);
for ( i = 0 ; i<iCount ; i++ )
{
aSub = hb_itemArrayGet( aParam, i+1 );
if ( Array2Point(aSub, &pt ))
{
*(Point+i) = pt ;
_itemRelease( aSub );
}
else
{
hb_retl(0);
hb_xfree(PolyPoints);
hb_xfree(Point);
_itemRelease( aSub );
return ;
}
}
hb_retl( PolyPolygon( (HDC) hb_parnl( 1 ), Point, PolyPoints, iPolyCount ) ) ;
hb_xfree(PolyPoints);
hb_xfree(Point);
}
else
hb_retl( 0 );
}
//-----------------------------------------------------------------------------
// int FillRect( HDC hDC, CONST RECT *lprc, HBRUSH hbr )
// SYNTAX:
// FillRect( hDC, aRect,hBrush ) -> nRet
HB_FUNC( FILLRECT )
{
RECT rc ;
if ( ISARRAY(2) && Array2Rect( hb_param(2,HB_IT_ARRAY), &rc ))
hb_retni( FillRect((HDC) hb_parnl( 1 ), &rc, (HBRUSH) hb_parnl( 3 ) ) ) ;
else
hb_retni(0);
}
//-----------------------------------------------------------------------------
// int FrameRect( HDC hDC, CONST RECT *lprc, HBRUSH hbr )
// SYNTAX:
// FrameRect( hDC, aRect,hBrush ) -> nRet
HB_FUNC( FRAMERECT )
{
RECT rc ;
if ( ISARRAY(2) && Array2Rect( hb_param(2,HB_IT_ARRAY), &rc ))
hb_retni( FrameRect((HDC) hb_parnl( 1 ), &rc, (HBRUSH) hb_parnl( 3 ) ) ) ;
else
hb_retni(0);
}
//-----------------------------------------------------------------------------
// BOOL InvertRect( HDC hDC, CONST RECT *lprc, HBRUSH hbr )
// SYNTAX:
// InvertRect( hDC, aRect ) -> lSuccess
HB_FUNC( INVERTRECT )
{
RECT rc ;
if ( ISARRAY(2) && Array2Rect( hb_param(2,HB_IT_ARRAY), &rc ))
hb_retni( InvertRect((HDC) hb_parnl( 1 ), &rc ) ) ;
else
hb_retni(0);
}
/////////////////////////
// Filling
/////////////////////////
//-----------------------------------------------------------------------------
// WINGDIAPI int WINAPI SetPolyFillMode(IN HDC, IN int);
HB_FUNC( SETPOLYFILLMODE )
{
hb_retni( SetPolyFillMode( (HDC) hb_parnl( 1 ), hb_parni( 2 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI ExtFloodFill( IN HDC, IN int, IN int, IN COLORREF, IN UINT);
HB_FUNC( EXTFLOODFILL )
{
hb_retl( ExtFloodFill( (HDC) hb_parnl( 1 ) ,
hb_parni( 2 ) ,
hb_parni( 3 ) ,
(COLORREF) hb_parnl( 4 ) ,
(UINT) hb_parni( 5 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI FillPath(IN HDC);
HB_FUNC( FILLPATH )
{
hb_retl( FillPath( (HDC) hb_parnl( 1 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI FlattenPath(IN HDC);
HB_FUNC( FLATTENPATH )
{
hb_retl( FlattenPath( (HDC) hb_parnl( 1 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI FloodFill( IN HDC, IN int, IN int, IN COLORREF);
HB_FUNC( FLOODFILL )
{
hb_retl( FloodFill( (HDC) hb_parnl( 1 ),
hb_parni( 2 ) ,
hb_parni( 3 ) ,
(COLORREF) hb_parnl( 4 )
) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI int WINAPI GetPolyFillMode( IN HDC);
HB_FUNC( GETPOLYFILLMODE )
{
hb_retni( GetPolyFillMode( (HDC) hb_parnl( 1 ) ) ) ;
}
//-----------------------------------------------------------------------------
// WINGDIAPI BOOL WINAPI GradientFill( IN HDC, IN PTRIVERTEX, IN ULONG, IN PVOID, IN ULONG, IN ULONG);
/*
// use arrays !
HB_FUNC( GRADIENTFILL )
{
TRIVERTEX * tve = (TRIVERTEX *) hb_param( 2 , HB_IT_STRING)->item.asString.value ;
PVOID pVoid ;
// Your code goes here
hb_retl( GradientFill( (HDC) hb_parnl( 1 ) ,
tve ,
(ULONG) hb_parnl( 3 ),
pVoid ,
(ULONG) hb_parnl( 5 ),
(ULONG) hb_parnl( 6 )
) ) ;
}
*/