It's weird, supposed to show the help with no parameters,
int main ( int argc, char *argv[] )
{
HFILE hFile;
ULONG ulNumBytes, ulFileLength;
PBYTE pbImageBottom, pbBMP;
ULONG rc;
PBITMAPFILEHEADER2 pbmfHeader;
/* Check the number of command line arguments. */
if ( argc != 2 )
{
printf ( "usage: SHOW filein.bmp\n" );
printf ( " Jams ab 8-bit bitmap image directly to the upper\n" );
printf ( " left corner of the screen. Clipping is not exemplified.\n" )
;
printf ( " Note this code example works only if:\n" );
printf ( " 1) SMVDD.SYS is installed propery in four CONFIG.SYS\n" );
printf ( " (You can get this from the MMPM/2 install disks), and\n" );
printf ( " 2) Your adapter has an aperture enabled, and\n" );
printf ( " 3) Your adapter is in 8, 16, or 24 bit bit color mode, and\n" );
printf ( " 4) Your bitmap is 8-bit only (i.e. this does no color conv
ersion).\n" );
return ( 0 );
}
Looks like it also depends on SMVDD.SYS, which I don't see on my system