diff options
author | Dave Chapman <dave@dchapman.com> | 2009-05-09 23:14:55 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2009-05-09 23:14:55 +0000 |
commit | 868652abaa163de646a3d530b9ecfa4a137b7d9b (patch) | |
tree | dcb840b7035e9acfa6862d862d6a487b14c9676f | |
parent | 25f77f60dd87b44da516971411e334536e198519 (diff) | |
download | rockbox-868652abaa163de646a3d530b9ecfa4a137b7d9b.tar.gz rockbox-868652abaa163de646a3d530b9ecfa4a137b7d9b.zip |
Patch by Mohamed Tarek - add #define to protect against multiple inclusion
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20897 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/codecs/libcook/rm2wav.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/codecs/libcook/rm2wav.h b/apps/codecs/libcook/rm2wav.h index 09b20c7fa6..f36145fc19 100644 --- a/apps/codecs/libcook/rm2wav.h +++ b/apps/codecs/libcook/rm2wav.h | |||
@@ -18,6 +18,9 @@ | |||
18 | * KIND, either express or implied. | 18 | * KIND, either express or implied. |
19 | * | 19 | * |
20 | ****************************************************************************/ | 20 | ****************************************************************************/ |
21 | #ifndef _RM2WAV_H | ||
22 | #define _RM2WAV_H | ||
23 | |||
21 | #include <stdio.h> | 24 | #include <stdio.h> |
22 | #include <stdint.h> | 25 | #include <stdint.h> |
23 | 26 | ||
@@ -72,3 +75,4 @@ int open_wav(char* filename); | |||
72 | void close_wav(int fd, RMContext *rmctx); | 75 | void close_wav(int fd, RMContext *rmctx); |
73 | int real_parse_header(int fd, RMContext *rmctx); | 76 | int real_parse_header(int fd, RMContext *rmctx); |
74 | void rm_get_packet(int fd,RMContext *rmctx, RMPacket *pkt); | 77 | void rm_get_packet(int fd,RMContext *rmctx, RMPacket *pkt); |
78 | #endif | ||