20000204-23:10 GMT+1 Antonio Linares <alinares@fivetech.com>

This commit is contained in:
Antonio Linares
2000-02-04 22:11:55 +00:00
parent 425a417c35
commit e5d86db5f8
2 changed files with 9 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
20000204-23:10 GMT+1 Antonio Linares <alinares@fivetech.com>
* source/rtl/inkey.c
* static int s_iMouseCol = 0, s_iMouseRow = 0;
(changed SHORT into int accordingly to Dave proposal).
20000204-19:25 GMT-3 Luiz Rafael Culik <culik@sl.conex.net>
*Source/rdd/dbcmd.c
* Change some functions docs
@@ -12,10 +17,10 @@
*source/compiler/harbour.c
* fixed initialization of static variable with dimmed array
STATIC var[ 2 ]
*source/rtl/inkey.c
* fixed s_iMouseCol/s_iMouseRow if compiled with GCC/LINUX
20000204-22:12 GMT+3 Alexander Kresin
* source/rdd/dbcmd.c
+ added hb_rddGetCurrentWorkAreaPointer() function
@@ -143,8 +148,7 @@
- Removed debug information from OS/2 builds of Harbour
* doc/whatsnew.txt
% Synchronized with updates that were made to the build31 branch
* source/pp/pragma.c
% Synchronized with updates that were made to the build31 branch * source/pp/pragma.c
* contrib/dot/pp_harb.ch
* tests/inline_c.prg
* STOPDUMP renamed as ENDDUMP (with Ron permission)

View File

@@ -99,7 +99,7 @@
static DWORD s_cNumRead = 0; /* Ok to use DWORD here, because this is specific... */
static DWORD s_cNumIndex = 0; /* ...to the Windows API, which defines DWORD, etc. */
static INPUT_RECORD s_irInBuf[ INPUT_BUFFER_LEN ];
static SHORT s_iMouseCol = 0, s_iMouseRow = 0;
static int s_iMouseCol = 0, s_iMouseRow = 0;
#endif
#endif
@@ -1368,4 +1368,3 @@ HARBOUR HB_FKMAX( void )
* CLEAR TYPEAHEAD,__KEYBOARD()
* $END$
*/