Hi,
Why I do need to stuff GTSTD with keyboard events, to make application
work?
Probably there is sth wrong with this code:
#elif defined( HB_IO_WIN )
if( !pGTSTD->fStdinConsole ||
WaitForSingleObject( ( HANDLE ) hb_fsGetOsHandle( pGTSTD->hStdin ), 0
) == 0x0000 )
{
BYTE bChar;
if( hb_fsRead( pGTSTD->hStdin, &bChar, 1 ) == 1 )
ch = pGTSTD->keyTransTbl[ bChar ];
}
#elif defined( __WATCOMC__ )
inside hb_gt_std_ReadKey(). I thought it was working but looks that I was
wrong. If you can look at it fix it using real MS-Windows then it will be
nice.
I really do not know that's going on. Here is some debug code:
#elif defined( HB_IO_WIN )
SetLastError( 0 );
HB_TRACE( HB_TR_ALWAYS, ("fStdinConsole=%d, hStdin=%d, OShandle=%d
GetLastError=%d", pGTSTD->fStdinConsole, pGTSTD->hStdin,
hb_fsGetOsHandle( pGTSTD->hStdin ), GetLastError()) );
if( !pGTSTD->fStdinConsole ||
WaitForSingleObject( ( HANDLE ) hb_fsGetOsHandle( pGTSTD->hStdin
), 0 ) == 0x0000 )
{
BYTE bChar;
HB_TRACE( HB_TR_ALWAYS, ("waiting for input GetLastError=%d",
(int) GetLastError() ) );
if( hb_fsRead( pGTSTD->hStdin, &bChar, 1 ) == 1 )
ch = pGTSTD->keyTransTbl[ bChar ];
HB_TRACE( HB_TR_ALWAYS, ("character bChar=%d", (int) bChar ) );
}
WaitForSingleObject() works OK for a few calls, but later it says we
have data... I've tried:
speedtst.exe 2>&1 | tee speedtst.log
I pressed 5 times [Enter] with the interval of a few seconds, and later
pressed key [a], and did not released it for more than a second. (Then
Ctrl-C to avoid huge log). Log below.
One of the strangest thing is that BCC .exe cross-compiled under Wine is a
little faster, than compiled on Windows (both running on Windows).
I forgot about one switch I have in my local BCC settings. I have in
HB_USER_CFLAGS -a4 and this can be the source of difference. With -a4
BCC binaries consumes less memory (the item size is 16 instead 24) and
are little bit faster.
Yes.
? MEMORY(1004) / MEMORY(1003) // prints 24.00
BCC / GCC speed difference much smaller on Windows, about 16%.
Yes and please note the -Os MinGW binaries are faster then BCC ones.
They were slower in my tests. It can caused also by different CPU.
I'm using AMD Phenom(tm) 8450 Triple-Core Processor. If your CPU has
less cache memory then mine then smaller binaries will be preferred
and this can explain such results.
Intel Celeron 2.20 on this side. Celeron's cache is smaller for sure.
Regards,
Mindaugas
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=203
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=203
gtstd.c:392: HB_TR_ALWAYS character bChar=13
05/28/09 02:08:57 Windows XP 5.1.2600 Service Pack 2
Harbour 1.1.0dev (Rev. 11150) Borland C++ 5.5.1 (32-bit) x86
THREADS: 0
N_LOOPS: 1000000gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0,
OShandle=3 GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=13
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=13
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=13
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=13
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
[ T000: empty loop overhead ]...................................0.08
====================================================================gtstd.c:382:
HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3 GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
[ T001: x := L_C
]..............................................0.08gtstd.c:382:
HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3 GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
[ T002: x := L_N
]..............................................0.22gtstd.c:382:
HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3 GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
[ T003: x := L_D
]..............................................0.16gtstd.c:382:
HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3 GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:382: HB_TR_ALWAYS fStdinConsole=1, hStdin=0, OShandle=3
GetLastError=0
gtstd.c:389: HB_TR_ALWAYS waiting for input GetLastError=0
gtstd.c:392: HB_TR_ALWAYS character bChar=97
_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour