aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/scicore/exe_dec.h
diff options
context:
space:
mode:
authorMax Horn2009-02-15 22:28:50 +0000
committerMax Horn2009-02-15 22:28:50 +0000
commit5ecfecd3bc795446581186eb7f0e04b1c0caa0e3 (patch)
treec69aa304b273dd26c3226c7d25be9890c163b886 /engines/sci/scicore/exe_dec.h
parent57434d955fc6eaa77ab1ef5c408f733a59dabbcf (diff)
downloadscummvm-rg350-5ecfecd3bc795446581186eb7f0e04b1c0caa0e3.tar.gz
scummvm-rg350-5ecfecd3bc795446581186eb7f0e04b1c0caa0e3.tar.bz2
scummvm-rg350-5ecfecd3bc795446581186eb7f0e04b1c0caa0e3.zip
SCI: Run astyle to make the code be more compliant with our Code Formatting Guidelines: scicore dir
svn-id: r38318
Diffstat (limited to 'engines/sci/scicore/exe_dec.h')
-rw-r--r--engines/sci/scicore/exe_dec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/scicore/exe_dec.h b/engines/sci/scicore/exe_dec.h
index 9b30da0772..32695a615d 100644
--- a/engines/sci/scicore/exe_dec.h
+++ b/engines/sci/scicore/exe_dec.h
@@ -35,7 +35,7 @@ typedef struct _exe_decompressor {
** of lower-case (where applicable) alphanumerics
*/
- exe_handle_t * (*open) (const char *filename);
+ exe_handle_t * (*open)(const char *filename);
/* Opens an executable file
** Parameters: (const char *) filename: Filename of executable to open.
** Returns : (exe_handle_t *) Decompressor file handle, or NULL on
@@ -44,7 +44,7 @@ typedef struct _exe_decompressor {
** decompressor. If this is not the case the function will fail.
*/
- int (*read) (exe_handle_t *handle, void *buf, int count);
+ int (*read)(exe_handle_t *handle, void *buf, int count);
/* Reads from executable file
** Parameters: (exe_handle_t *) handle: Decompressor file handle.
** (void *) buf: Buffer to store decompressed data.
@@ -56,7 +56,7 @@ typedef struct _exe_decompressor {
** reached.
*/
- void (*close) (exe_handle_t *handle);
+ void (*close)(exe_handle_t *handle);
/* Closes a decompressor file handle.
** Parameters: (exe_handle_t *) handle: Decompressor file handle.
** Returns : (void)