Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 504 Bytes

common.h

File metadata and controls

20 lines (15 loc) · 504 Bytes
 
Oct 21, 1999
Oct 21, 1999
1
/*
Oct 18, 2017
Oct 18, 2017
2
Oct 21, 1999
Oct 21, 1999
3
4
5
6
TiMidity -- Experimental MIDI to WAVE converter
Copyright (C) 1995 Tuukka Toivonen <toivonen@clinet.fi>
This program is free software; you can redistribute it and/or modify
Dec 31, 2011
Dec 31, 2011
7
it under the terms of the Perl Artistic License, available in COPYING.
Oct 21, 1999
Oct 21, 1999
8
Oct 18, 2017
Oct 18, 2017
9
10
common.h
*/
Aug 21, 2004
Aug 21, 2004
11
Oct 21, 1999
Oct 21, 1999
12
13
14
15
16
typedef struct {
char *path;
void *next;
} PathList;
Oct 18, 2017
Oct 18, 2017
17
extern SDL_RWops *open_file(const char *name);
Oct 4, 2009
Oct 4, 2009
18
extern void add_to_pathlist(const char *s);
Oct 21, 1999
Oct 21, 1999
19
extern void *safe_malloc(size_t count);
Oct 18, 2017
Oct 18, 2017
20
extern void free_pathlist(void);