Some fixes and cleanups (still doesn't work here).

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1757 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2005-05-14 22:42:26 +00:00
parent 5329d59080
commit 7bc45a551e
4 changed files with 75 additions and 62 deletions
+4 -4
View File
@@ -44,7 +44,7 @@ typedef struct CLIPTXTDATA {
} CLIPTXTDATA;
typedef struct FILEDATA {
char filename[20];
char filename[PATH_MAX];
int num_lines;
long chksum;
unsigned long tracktime;
@@ -76,9 +76,9 @@ typedef struct XTRATRACKDATA {
}
} XTRATRACKDATA;
int read_ogg (char *filename, AUDIOHDR *audiohdr);
unsigned long get_ogg_runtime (char *filename);
unsigned long checksum(char *filename);
int read_ogg (const char *filename, AUDIOHDR *audiohdr);
unsigned long get_ogg_runtime (const char *filename);
unsigned long checksum(const char *filename);
unsigned long get_clock();