diff options
Diffstat (limited to 'apps/plugins/imageviewer/jpegp/GETC.h')
-rw-r--r-- | apps/plugins/imageviewer/jpegp/GETC.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/imageviewer/jpegp/GETC.h b/apps/plugins/imageviewer/jpegp/GETC.h index d17cdb9857..5e8a3c6a9d 100644 --- a/apps/plugins/imageviewer/jpegp/GETC.h +++ b/apps/plugins/imageviewer/jpegp/GETC.h | |||
@@ -37,20 +37,20 @@ | |||
37 | 37 | ||
38 | // For decoders | 38 | // For decoders |
39 | 39 | ||
40 | extern int GETC(); | 40 | extern int GETC(void); |
41 | 41 | ||
42 | // Multibyte helpers | 42 | // Multibyte helpers |
43 | extern int GETWbi(); // read word (16-bit) big-endian | 43 | extern int GETWbi(void); // read word (16-bit) big-endian |
44 | extern int GETWli(); // little-endian | 44 | extern int GETWli(void); // little-endian |
45 | extern int GETDbi(); // read double word (32-bit) big-endian | 45 | extern int GETDbi(void); // read double word (32-bit) big-endian |
46 | extern int GETDli(); // little-endian | 46 | extern int GETDli(void); // little-endian |
47 | 47 | ||
48 | // positioning | 48 | // positioning |
49 | extern void SEEK(int); // move relative to current | 49 | extern void SEEK(int); // move relative to current |
50 | extern void POS(int); // move absolute position (TIFF) | 50 | extern void POS(int); // move absolute position (TIFF) |
51 | extern int TELL(); // read actual position | 51 | extern int TELL(void); // read actual position |
52 | 52 | ||
53 | 53 | ||
54 | // For RAINBOW clients to implement outside of Rainbow Library | 54 | // For RAINBOW clients to implement outside of Rainbow Library |
55 | extern void *OPEN(char*); | 55 | extern void *OPEN(char*); |
56 | extern void CLOSE(); | 56 | extern void CLOSE(void); |