* contrib\hbblat\tests\blatcmd.prg
* contrib\hbblat\tests\blattest.prg
* contrib\hbct\tests\datetime.prg
* contrib\hbcurl\tests\ftp_uldl.prg
* contrib\hbfimage\tests\fitest.prg
* contrib\hbformat\hbfmtcls.prg
* contrib\hbformat\utils\hbformat.prg
* contrib\hbfoxpro\dll.prg
* contrib\hbgd\gd.prg
* contrib\hbgd\gdbarcod.prg
* contrib\hbgd\tests\animgif.prg
* contrib\hbgd\tests\antialia.prg
* contrib\hbgd\tests\counter.prg
* contrib\hbgd\tests\gdtest.prg
* contrib\hbgd\tests\gdtestcl.prg
* contrib\hbgd\tests\test_out.prg
* contrib\hbgd\tests\testdpi.prg
* contrib\hbgd\tests\tostring.prg
* contrib\hbmagic\tests\hbmagit.prg
* contrib\hbmisc\fcomma.prg
* contrib\hbmxml\tests\testmxml.prg
* contrib\hbmysql\tsqlbrw.prg
* contrib\hbnf\menu1.prg
* contrib\hbnf\pegs.prg
* contrib\hbnf\popadder.prg
* contrib\hbnf\savesets.prg
* contrib\hbnf\tempfile.prg
* contrib\hbpgsql\tests\cache.prg
* contrib\hbpgsql\tests\dbf2pg.prg
* contrib\hbpgsql\tests\simple.prg
* contrib\hbpgsql\tests\stress.prg
* contrib\hbqt\qtgui\hbqt_errorsys.prg
* contrib\hbsms\tests\send.prg
* contrib\hbsqlit3\hdbcsqlt.prg
* contrib\hbsqlit3\tests\authoriz.prg
* contrib\hbsqlit3\tests\backup.prg
* contrib\hbsqlit3\tests\hdbctest.prg
* contrib\hbsqlit3\tests\hooks.prg
* contrib\hbtip\cgi.prg
* contrib\hbtip\client.prg
* contrib\hbtip\ftpcli.prg
* contrib\hbtip\httpcli.prg
* contrib\hbtip\sessid.prg
* contrib\hbtip\tests\dnldftp.prg
* contrib\hbtip\tests\gmail.prg
* contrib\hbtip\tests\upld_ftp.prg
* contrib\hbwin\tests\dlg.prg
* contrib\hbwin\tests\testsvc.prg
* contrib\hbwin\win_tcom.prg
* contrib\hbxpp\tgetx.prg
* contrib\hbxpp\xppop.prg
* contrib\hbziparc\ziparc.prg
* examples\hbbtree\tbtree.prg
* examples\httpsrv\modules\info.prg
* examples\httpsrv\modules\testajax.prg
* examples\rddado\adordd.prg
* examples\terminal\terminal.prg
* src\rdd\usrrdd\rdds\arrayrdd.prg
* src\rdd\usrrdd\rdds\logrdd.prg
* src\rtl\achoice.prg
* src\rtl\radiogrp.prg
* src\rtl\tclass.prg
* tests\usrrdd\exlog.prg
* using HB_DEFAULT() instead of DEFAULT ... TO ...
% deleted '#include "common.ch"' where possible
; please pay attention to places where multiple values are
accepted and DEFAULT applied. It's possible some of these
might have been slipped my attention and converted to
HB_DEFAULT(), causing regression.
* src/rdd/usrrdd/rdds/arrayrdd.prg
! typos in recent mods
132 lines
3.0 KiB
Plaintext
132 lines
3.0 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* File......: tempfile.prg
|
|
* Author....: Glenn Scott
|
|
* CIS ID....: 71620,1521
|
|
*
|
|
* This is an original work by Glenn Scott and is placed in the
|
|
* public domain.
|
|
*
|
|
* Modification history:
|
|
* ---------------------
|
|
*
|
|
* Rev 1.7 28 Sep 1992 23:48:48 GLENN
|
|
* Deleted #define for FLAG_CARRY as Toolkit v2.1's ftint86.ch has it.
|
|
*
|
|
* Rev 1.6 03 Oct 1991 18:36:28 GLENN
|
|
* Tim Wong from Nantucket pointed out that this DOS function actually
|
|
* leaves a file handle in AX. In order to preserve the functionality,
|
|
* I now fclose() that handle if the call is succsessful.
|
|
*
|
|
* Rev 1.5 15 Aug 1991 23:05:04 GLENN
|
|
* Forest Belt proofread/edited/cleaned up doc
|
|
*
|
|
* Rev 1.4 17 Jul 1991 22:11:18 GLENN
|
|
* Stripped off chr(0)s in the return value (aRegs[DS])
|
|
*
|
|
* Rev 1.3 03 Jul 1991 01:08:08 GLENN
|
|
* Changed one line in FT_TEST driver ( cHide == "Y" )
|
|
*
|
|
* Rev 1.2 14 Jun 1991 19:53:10 GLENN
|
|
* Minor edit to file header
|
|
*
|
|
* Rev 1.1 12 Jun 1991 02:45:40 GLENN
|
|
* Documentation mods, and convert to new ft_int86() syntax, return value.
|
|
*
|
|
* Rev 1.0 01 Apr 1991 01:02:24 GLENN
|
|
* Nanforum Toolkit
|
|
*
|
|
*/
|
|
|
|
#ifdef HB_OS_DOS
|
|
#define FT_TEMPFILE_ORIGINAL
|
|
#endif
|
|
|
|
#ifdef HB_OS_DOS_32
|
|
#undef FT_TEMPFILE_ORIGINAL
|
|
#endif
|
|
|
|
#ifdef FT_TEMPFILE_ORIGINAL
|
|
|
|
#include "ftint86.ch"
|
|
|
|
#define DOS 33
|
|
#define TEMPNAME 90
|
|
|
|
FUNCTION FT_TEMPFIL( cPath, lHide, nHandle )
|
|
LOCAL cRet,aRegs[3]
|
|
|
|
cPath := iif( valType(cPath) != "C", ;
|
|
replicate( chr(0),13) , ;
|
|
cPath += replicate( chr(0), 13 ) ;
|
|
)
|
|
|
|
lHide := iif( valType(lHide) != "L", .f., lHide )
|
|
/*
|
|
aRegs[AX] := MAKEHI( TEMPNAME )
|
|
aRegs[CX] := iif( lHide, 2, 0 )
|
|
aRegs[DS] := cPath
|
|
aRegs[DX] := REG_DS
|
|
|
|
FT_INT86( DOS, aRegs )
|
|
*/
|
|
aRegs:=_ft_tempfil(cPath,lHide)
|
|
/* If carry flag is clear, then call succeeded and a file handle is
|
|
* sitting in AX that needs to be closed.
|
|
*/
|
|
|
|
if !ft_isBitOn( aRegs[3], FLAG_CARRY )
|
|
if pcount() >= 3
|
|
nHandle := aRegs[1]
|
|
else
|
|
fclose( aRegs[1] )
|
|
endif
|
|
cRet := alltrim( strtran( aRegs[2], chr(0) ) )
|
|
else
|
|
cRet := ""
|
|
endif
|
|
|
|
RETURN cRet
|
|
|
|
#else
|
|
|
|
#include "fileio.ch"
|
|
|
|
FUNCTION FT_TEMPFIL( cPath, lHide, nHandle )
|
|
|
|
LOCAL cFile
|
|
|
|
hb_default( @cPath, ".\" )
|
|
hb_default( @lHide, .F. )
|
|
|
|
cPath := alltrim( cPath )
|
|
|
|
nHandle := HB_FTempCreate( cPath, nil, iif( lHide, FC_HIDDEN, FC_NORMAL ), @cFile )
|
|
|
|
if pcount() <= 2
|
|
fclose( nHandle )
|
|
endif
|
|
|
|
RETURN cFile
|
|
|
|
#endif /* FT_TEMPFILE_ORIGINAL */
|
|
|
|
#ifdef FT_TEST
|
|
FUNCTION MAIN( cPath, cHide )
|
|
LOCAL cFile, nHandle
|
|
cFile := FT_TEMPFIL( cPath, (cHide == "Y") )
|
|
|
|
if !empty( cFile )
|
|
QOut( cFile )
|
|
nHandle := fopen( cFile, 1 )
|
|
fwrite( nHandle, "This is a test!" )
|
|
fclose( nHandle )
|
|
else
|
|
Qout( "An error occurred" )
|
|
endif
|
|
RETURN nil
|
|
#endif
|