19990809-07:40 GMT+1

This commit is contained in:
Viktor Szakats
1999-08-09 05:57:34 +00:00
parent 35b7c865f0
commit 0147b8b0d5
22 changed files with 42 additions and 17 deletions

View File

@@ -1,3 +1,18 @@
19990809-07:40 GMT+1 Victor Szel <info@szelvesz.hu>
* source/odbc moved to contrib/odbc
* source/rtl/console.c
+ #include "io.h" added for __CYGWIN__
* tests/working/block2.PRG removed.
* tests/working/transdef.prg
tests/working/testrdd.prg
tests/working/testpre.prg
tests/working/testdbf.prg
tests/working/strsub.prg
tests/working/dates4.prg
! CVS tag added.
* source/rtl/mtran.c
! Small typo.
19990809-06:23 GMT+1 Victor Szel <info@szelvesz.hu>
* include/memvars.ch
! #ifdef _MEMVARS_CH guard added.

View File

@@ -59,6 +59,9 @@
#else
#include <io.h>
#endif
#if defined(__CYGWIN__)
#include <io.h>
#endif
#include <fcntl.h>
#include "gtapi.h" /* HARBOUR_USE_GTAPI is checked inside gtapi.h, so that
we can always get the border styles */

View File

@@ -83,7 +83,7 @@ HB_INIT_SYMBOLS_END( Memotran__InitSymbols );
#pragma startup Memotran__InitSymbols
#endif
/* Note: pszResult must have an allocated buffer of at least */
/* NOTE: pszResult must have an allocated buffer of at least */
/* ulStringLen */
void hb_memotran( char *pszResult, ULONG *ulResultLen, char *pszString, ULONG ulStringLen, char cHardcr, char cSoftcr )

View File

@@ -1,16 +0,0 @@
// CodeBlocks management
function Main()
local bBlock := GenBlock()
Eval( bBlock, "I am a ", "codeblock" )
QOut( "ok" )
return nil
function GenBlock()
return { | c, d | QOut( c + d ) }

View File

@@ -1,3 +1,7 @@
/*
* $Id$
*/
// Testing Harbour dates management.
#include "set.ch"

View File

@@ -1,3 +1,6 @@
/*
* $Id$
*/
// Testing strings concat

View File

@@ -1,3 +1,7 @@
/*
* $Id$
*/
function main()
local aStruct := { { "CHARACTER", "C", 25, 0 }, ;

View File

@@ -1,3 +1,7 @@
/*
* $Id$
*/
FUNCTION Main()
LOCAL cString

View File

@@ -1,3 +1,7 @@
/*
* $Id$
*/
function main()
local aRdd := rddList()

View File

@@ -1,3 +1,7 @@
/*
* $Id$
*/
procedure main
local a := 1, b := 5.22
qout( "[" + transform( 1, "@B" ) + "]" )