borland conditionals have been removed. asm sources converted fully to tasm ideal mode. keyboard and timer interrupt handlers moved to c code copied from fdemo watcom sources
23 lines
667 B
C
23 lines
667 B
C
// This source file contains the functions needed to read in GIF files.
|
|
// (c) 1995 ACK Software (Lary Myers)
|
|
#include <stdio.h>
|
|
|
|
#include "ack3d.h"
|
|
#include "ackeng.h"
|
|
#include "ackext.h"
|
|
|
|
|
|
//±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
|
|
// Read a GIF format file and return a buffer containing the uncompressed
|
|
// image.
|
|
//±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±±
|
|
#pragma argsused
|
|
unsigned char *AckReadgif (char *picname)
|
|
{
|
|
// This is a stub routine used only as a place holder for the actual
|
|
// GIF read routine. It was omitted based on current patent issues.
|
|
return(NULL);
|
|
}
|
|
// **** End of Source ****
|
|
|