Files
harbour-core/harbour/extras/hbapollo/tests/test10.prg
Viktor Szakats 340318e66d 2012-07-21 19:09 UTC+0200 Viktor Szakats (vszakats syenar.net)
+ extras
  - examples
  * doc/dirstruc.txt
    * renamed 'examples' to what it is more: 'extras'
2012-07-21 17:10:27 +00:00

26 lines
593 B
Plaintext

/*
* $Id$
*/
/*
Setting SoftSeek ON/OFF
*/
#include "sixapi.ch"
#include "simpleio.ch"
PROCEDURE MAIN()
? 'SYSTEM DEFAULT'
? 'sx_SetSoftSeek() =', sx_SetSoftSeek()
?
SET SOFTSEEK ON
? 'SET SOFTSEEK ON'
? 'sx_SetSoftSeek() =', sx_SetSoftSeek()
?
SET SOFTSEEK OFF
? 'SET SOFTSEEK OFF'
? 'sx_SetSoftSeek() =', sx_SetSoftSeek()
?
? 'Before :', sx_SetSoftSeek(), ', sx_SetSoftSeek(.T.) =', sx_SetSoftSeek( .T. ), ', Now :', sx_SetSoftSeek()
? 'Before :', sx_SetSoftSeek(), ', sx_SetSoftSeek(.F.) =', sx_SetSoftSeek( .F. ), ', Now :', sx_SetSoftSeek()