2011-02-05 18:29 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* examples/gtwvw/wvwfuncs.c
    * Renamed WIN_RECTANGLE() to WVW_RECTANGLE()
    * Renamed WIN_SETBKMODE() to WVW_SETBKMODE()
    - Deleted WIN_LOWORD()
    - Deleted WIN_HIWORD()
    ; INCOMPATIBILITY: If you used WIN_RECTANGLE() or WIN_SETBKMODE() 
                       specifically from GTWVW, change these calls to 
                       the neww WVW_*() versions.
                       If you used WIN_LOWORD() or WIN_HIWORD(), 
                       link hbwin lib (hbwin.hbc) to your app.

  * contrib/*/*.hbx
    * Regenerated.
This commit is contained in:
Viktor Szakats
2011-02-05 17:29:58 +00:00
parent 1c0f6467db
commit 33781293af
7 changed files with 26 additions and 27 deletions

View File

@@ -16,6 +16,21 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-02-05 18:29 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* examples/gtwvw/wvwfuncs.c
* Renamed WIN_RECTANGLE() to WVW_RECTANGLE()
* Renamed WIN_SETBKMODE() to WVW_SETBKMODE()
- Deleted WIN_LOWORD()
- Deleted WIN_HIWORD()
; INCOMPATIBILITY: If you used WIN_RECTANGLE() or WIN_SETBKMODE()
specifically from GTWVW, change these calls to
the neww WVW_*() versions.
If you used WIN_LOWORD() or WIN_HIWORD(),
link hbwin lib (hbwin.hbc) to your app.
* contrib/*/*.hbx
* Regenerated.
2011-02-05 17:51 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbssl/ssl.c
! Suppressed msvc warning.

View File

@@ -11,8 +11,7 @@
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* Regenerate using hbmk2 '-hbx=' option. */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBEXPAT__

View File

@@ -11,8 +11,7 @@
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* Regenerate using hbmk2 '-hbx=' option. */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBLZF__

View File

@@ -11,8 +11,7 @@
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* Regenerate using hbmk2 '-hbx=' option. */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBMXML__
@@ -36,6 +35,7 @@ DYNAMIC MXMLELEMENTDELETEATTR
DYNAMIC MXMLELEMENTGETATTR
DYNAMIC MXMLELEMENTSETATTR
DYNAMIC MXMLELEMENTSETATTRF
DYNAMIC MXMLELEMENTSETATTRF
DYNAMIC MXMLENTITYGETNAME
DYNAMIC MXMLENTITYGETVALUE
DYNAMIC MXMLFINDELEMENT
@@ -71,6 +71,7 @@ DYNAMIC MXMLNEWOPAQUE
DYNAMIC MXMLNEWREAL
DYNAMIC MXMLNEWTEXT
DYNAMIC MXMLNEWTEXTF
DYNAMIC MXMLNEWTEXTF
DYNAMIC MXMLNEWXML
DYNAMIC MXMLREMOVE
DYNAMIC MXMLSAVEALLOCSTRING
@@ -88,6 +89,7 @@ DYNAMIC MXMLSETOPAQUE
DYNAMIC MXMLSETREAL
DYNAMIC MXMLSETTEXT
DYNAMIC MXMLSETTEXTF
DYNAMIC MXMLSETTEXTF
DYNAMIC MXMLSETUSERDATA
DYNAMIC MXMLSETWRAPMARGIN
DYNAMIC MXMLWALKNEXT

View File

@@ -11,8 +11,7 @@
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* Regenerate using hbmk2 '-hbx=' option. */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBMZIP__

View File

@@ -11,8 +11,7 @@
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated code below. DO NOT EDIT! */
/* Regenerate with HB_REBUILD_EXTERN=yes while using GCC */
/* compiler family. [vszakats] */
/* Regenerate using hbmk2 '-hbx=' option. */
/* -------------------------------------------------------------------- */
#ifndef __HBEXTERN_CH__HBXDIFF__

View File

@@ -1,5 +1,5 @@
/*
* $Id$
* $Id$
*/
/*
@@ -183,7 +183,7 @@ HB_FUNC( WIN_SETBKCOLOR )
/*-------------------------------------------------------------------*/
HB_FUNC( WIN_SETBKMODE )
HB_FUNC( WVW_SETBKMODE )
{
hb_retni( ( int ) SetBkMode( ( HDC ) HB_PARHANDLE( 1 ), hb_parni( 2 ) ) );
}
@@ -211,20 +211,6 @@ HB_FUNC( WIN_SELECTOBJECT )
/*-------------------------------------------------------------------*/
HB_FUNC( WIN_LOWORD )
{
hb_retnl( LOWORD( hb_parnl( 1 ) ) );
}
/*-------------------------------------------------------------------*/
HB_FUNC( WIN_HIWORD )
{
hb_retnl( HIWORD( hb_parnl( 1 ) ) );
}
/*-------------------------------------------------------------------*/
HB_FUNC( WIN_MULDIV )
{
hb_retni( MulDiv( hb_parni( 1 ), hb_parni( 2 ), hb_parni( 3 ) ) );
@@ -415,7 +401,7 @@ HB_FUNC( WIN_RELEASEDC )
/*-------------------------------------------------------------------*/
HB_FUNC( WIN_RECTANGLE )
HB_FUNC( WVW_RECTANGLE )
{
Rectangle( ( HDC ) HB_PARHANDLE( 1 ), hb_parni( 2 ), hb_parni( 3 ), hb_parni( 4 ), hb_parni( 5 ) );
}