R-PAGE
Resistance's Portable-Adventure-Game-Engine
shrinkler.h
Go to the documentation of this file.
1 /* Shrinkler executable file compressor for Amiga
2 
3  Copyright 1999-2015 Aske Simon Christensen, with exceptions noted below.
4 
5  Permission is hereby granted to anyone obtaining a copy of this software
6  package (including accompanying documentation) to compile, use, copy,
7  modify, merge and/or distribute it, in whole or in part, subject to the
8  following conditions:
9 
10  - Distribution in source code form must include a copy of this license.
11 
12  - Distribution in binary form must not be misattributed, i.e. you must
13  not claim (implicitly or explicitly) that you wrote it yourself.
14 
15  - Distribution of the decrunch headers (Header.S, MiniHeader.S,
16  OverlapHeader.S, and the .bin and .dat files generated from them) in
17  binary form as part of an Amiga executable is not restricted by this
18  license and does not require attribution.
19  In particular, output executables from Shrinkler (which contain code
20  from the decrunch headers) are to be considered original works of the
21  author(s) of the corresponding input executables.
22 
23  - The data decompression code (ShrinklerDecompress.S) is distributed
24  alongside the Shrinkler binaries in the official archives and has its
25  own license stated inside the file.
26 
27 */
28 
29 #ifdef LATTICE
30 #include <clib/dos_protos.h>
31 #include <clib/exec_protos.h>
32 #include <clib/alib_protos.h>
33 #include <pragmas/dos_pragmas.h>
34 #include <pragmas/exec_pragmas.h>
35 #include <libraries/dos.h>
36 #include <dos/rdargs.h>
37 #include <utility/tagitem.h>
38 #include <devices/audio.h>
39 #include <exec/execbase.h>
40 #include <exec/memory.h>
41 #include <string.h>
42 #include <hardware/cia.h>
43 
44 extern __asm ULONG ShrinklerDecompress( register __a0 UBYTE *Source, /* Input buffer to be decompressed */
45  register __a1 UBYTE *Destination, /* Output buffer. */
46  register __a2 UBYTE *Callback,
47  register __a3 UBYTE *Callback_arg);
48 
49  #endif
unsigned char UBYTE
Definition: utils.h:20
unsigned long ULONG
Definition: utils.h:24