Getting a Copy of the Contents of a Memory File Row

To get a copy of a memory file row, call the get memory file row function, mf_rowtxt():

void mf_rowtxt(bufstp, mf_row, mfp)
 
UCHAR *bufstp;
/* Pointer to string buffer to copy 
*/
 
/* row contents to
*/
int mf_row;
/* Row to get contents for
*/
MFILEPTR mfp;
/* Memory file to access
*/

The buffer you pass to mf_rowtxt() must be large enough to hold the memory file row's string, including the terminal null.


Home Contents Previous Next