I was wondering if the textcapt.exe from your website has any parameters..
The source code is so short, I can post it right here. To answer your question: there are no command parameters.
#include <fcntl.h>
#include <io.h>
#include <sys\types.h>
#include <sys\stat.h>
//MUST COMPILE WITH 16-bit Microsoft C!
char origscreen[49152];
int main ()
{
int i, j, x, y, xdim, ydim, fil;
char far *ptr;
xdim = *(short far *)(0x0000044a);
ydim = *(char far *)(0x00000484)+1;
if ((long)xdim*(long)ydim >= 32768L) ydim = 32767/xdim;
i = 0;
for(y=0;y<ydim;y++)
{
ptr = (char far *)((long)0xb8000000 + ((long)(y*xdim + (xdim-1))*2));
for(j=xdim-1;j>=0;j--,ptr-=2)
if ((*ptr != 0) && (*ptr != 10) && (*ptr != 13) && (*ptr != 32)) break;
ptr = (char far *)((long)0xb8000000 + ((long)y*xdim*2));
for(x=0;x<=j;x++,ptr+=2) origscreen[i++] = *ptr;
origscreen[i++] = 13; origscreen[i++] = 10;
}
if ((fil = open("TEXTCAPT.TXT",O_BINARY|O_TRUNC|O_CREAT|O_WRONLY,S_IWRITE)) == -1)
{ printf("Could not write TEXTCAPT.TXT\n"); exit(0); }
write(fil,origscreen,i);
close(fil);
return(0);
}