File: gif.h

package info (click to toggle)
htp 1.19-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 1,272 kB
  • sloc: ansic: 6,645; perl: 204; makefile: 60
file content (21 lines) | stat: -rw-r--r-- 368 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
//
// gif.h
//
// Copyright (c) 1995-96 Jim Nelson.  Permission to distribute
// granted by the author.  No warranties are made on the fitness of this
// source code.
//
*/

#ifndef GIF_H
#define GIF_H

/* GIF format detected? */
BOOL GifFormatFound(FILE *file);

/* get image dimensions */
BOOL GifReadDimensions(FILE *file, DWORD *height, DWORD *width);

#endif