home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 September
/
PCWK996.iso
/
polskie
/
orhmet
/
dfdisk
/
clipface
/
raporty.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-04-18
|
834b
|
58 lines
#include <extend.h>
#include "../rlibc/rlibc.h"
CLIPPER dfPrintPer ( void )
{
if (PCOUNT<2)
{
_retni(R4);
return;
}
if (_parinfo(1)!=CHARACTER || _parinfo(2)!=CHARACTER)
{
_retni(R4);
return;
}
_retni(DFPrintPeriod(_parc(1), _parc(2)));
}
CLIPPER dfSendPSt ( void )
{
if (PCOUNT<2)
{
_retni(R4);
return;
}
if (_parinfo(1)!=CHARACTER || _parinfo(2)!=CHARACTER )
{
_retni(R4);
return;
}
_retni(DFSendPeriodStart(_parc(1), _parc(2) ));
}
CLIPPER dfSendPCo ( void )
{
char line[19];
int rvalue;
if (PCOUNT<1)
{
_retni(R4);
return;
}
if (_parinfo(1)!=(MPTR|CHARACTER) )
{
_retni(R4);
return;
}
rvalue = DFSendPeriodCont(line);
_storclen( line, 18, 1 );
_retni( rvalue );
}
CLIPPER dfPrintDay ( void )
{
_retni(DFPrintDay());
}