home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
desqview
/
dvglue10.arc
/
TVADIR.C
< prev
next >
Wrap
C/C++ Source or Header
|
1988-08-10
|
1KB
|
30 lines
/*================================================*/
/* TVADIR.C */
/* */
/* (c) Copyright 1988 Ralf Brown */
/* All Rights Reserved */
/* May be freely copied for noncommercial use, */
/* provided that this copyright notice remains */
/* intact and any changes are indicated in the */
/* comment blocks preceding functions */
/*================================================*/
#include "tvapi.h"
/*================================================*/
/* TVpanel_dir get directory of panels in file */
/* Ralf Brown 8/6/88 */
/*================================================*/
char far * pascal TVpanel_dir(OBJECT panel, int *num_entries)
{
PARMLIST2 p ;
p.num_args = 0 ;
TVsendmsg(OPEN_MSG, TOS, panel, (PARMLIST *)&p) ;
*num_entries = (int) p.arg[1] ;
return (char far *) p.arg[0] ;
}
/* End of TVADIR.C */