See ChangeLog entry 2000-05-09 19:20 GMT-4 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2000-05-09 23:24:42 +00:00
parent e820d6adeb
commit 9138e033a3
4 changed files with 24 additions and 6 deletions

View File

@@ -1,3 +1,16 @@
2000-05-09 19:20 GMT-4 David G. Holm <dholm@jsd-llc.com>
* contrib/rdd_ads/ads1.c
% Modified ADS_GETFUNCTABLE to use pointers.
* doc/cvs_ssh.txt
+ Added explanation about your SourceForge CVS ID is all lower
case, regardless of the case of your SourceForge login ID.
* include/hbver.h
+ I bumped the revision to "a" and the date to 2000-05-05, because I
released a test binary at http://www.jsd-llc.com/Harbour-Project/
20000509-22:27 GMT+2 Maurilio Longo <maurilio.longo@libero.it>
* source/rtl/teditor.prg

View File

@@ -1339,11 +1339,11 @@ HB_FUNC( ADS_GETFUNCTABLE )
RDDFUNCS * pTable;
USHORT * uiCount;
uiCount = ( USHORT * ) hb_parnl( 1 );
uiCount = ( USHORT * ) hb_itemGetPtr( hb_param( 1, HB_IT_POINTER ) );
* uiCount = RDDFUNCSCOUNT;
pTable = ( RDDFUNCS * ) hb_parnl( 2 );
pTable = ( RDDFUNCS * ) hb_itemGetPtr( hb_param( 2, HB_IT_POINTER ) );
if( pTable )
hb_retni( hb_rddInherit( pTable, &adsTable, &adsSuper, NULL ) );
hb_retni( hb_rddInherit( pTable, &adsTable, &adsSuper, 0 ) );
else
hb_retni( FAILURE );
}

View File

@@ -6,6 +6,11 @@ This is how I got SSH and CVS to work together!
The trick was in how to set up the CVSROOT variable.
I did this on NT4, but it should be similar for 95/98 and OS/2.
Note: Your CVS ID is the same as your SourceForge login ID, with one
very important difference: Any and all upper case letters are
converted to lower case. So if your SourceForge login ID is
MyFullName, then your CVS ID will be myfullname.
First I set up SSH, using the following steps:
1) I pointed my web browser to ftp://ftp.cs.hut.fi/pub/ssh/contrib/

View File

@@ -38,10 +38,10 @@
#define HB_VER_MAJOR 0 /* Major version number */
#define HB_VER_MINOR 33 /* Minor version number */
#define HB_VER_REVISION "" /* Revision letter */
#define HB_VER_REVISION "a" /* Revision letter */
#define HB_VER_BUILD 33 /* Build number */
#define HB_VER_YEAR 2000 /* Build year */
#define HB_VER_MONTH 04 /* Build month */
#define HB_VER_DAY 18 /* Build day */
#define HB_VER_MONTH 05 /* Build month */
#define HB_VER_DAY 05 /* Build day */
#endif /* HB_VER_H_ */