comparison decoders/voc.c @ 301:ca43129df299

Visual C fixes.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 25 Mar 2002 20:54:07 +0000
parents 1bafef18dabf
children c97be6e1bd27
comparison
equal deleted inserted replaced
300:338cd6c101e3 301:ca43129df299
137 { 137 {
138 /* it's a no-op. */ 138 /* it's a no-op. */
139 } /* VOC_quit */ 139 } /* VOC_quit */
140 140
141 141
142 static __inline__ int voc_check_header(SDL_RWops *src) 142 static inline int voc_check_header(SDL_RWops *src)
143 { 143 {
144 /* VOC magic header */ 144 /* VOC magic header */
145 Uint8 signature[20]; /* "Creative Voice File\032" */ 145 Uint8 signature[20]; /* "Creative Voice File\032" */
146 Uint16 datablockofs; 146 Uint16 datablockofs;
147 147