mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-15 06:06:02 +00:00
d8223dbcfd
This moves method comments from the .cpp file to the .h file, where users of the methods can find them. This also makes it possible for the IDE to show the comments when you mouse-hover over the method name, though Visual Studio is a bit weak in this regard. Also, added "override" keywords on overridden methods. Reasonably current versions of popular compilers seem to support this. Also, don't have the return type on a separate line in the .cpp file. The motivation for the practice -- quickly finding a method definition with "^name" -- is less useful in C++ than C, and modern IDEs provide more convenient ways to do the same thing. Also, do some more conversion from unsigned types to uintXX_t. This commit is primarily for the "app" directory.
21 lines
530 B
C
21 lines
530 B
C
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Implementation of SQueeze compression.
|
|
*/
|
|
#ifndef APP_SQUEEZE_H
|
|
#define APP_SQUEEZE_H
|
|
|
|
/*
|
|
* Expand "SQ" format. Archive file should already be seeked.
|
|
*
|
|
* If "outExp" is NULL, no output is produced (useful for "test" mode).
|
|
*/
|
|
NuError UnSqueeze(FILE* fp, unsigned long realEOF, ExpandBuffer* outExp,
|
|
bool fullSqHeader, int blockSize);
|
|
|
|
#endif /*APP_SQUEEZE_H*/
|