File: playlist_file.h

package info (click to toggle)
moc 1%3A2.6.0~svn-r2935-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 2,452 kB
  • ctags: 3,247
  • sloc: ansic: 31,626; sh: 929; cpp: 486; makefile: 239
file content (18 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef PLAYLIST_FILE_H
#define PLAYLIST_FILE_H

#ifdef __cplusplus
extern "C" {
#endif

int plist_load (struct plist *plist, const char *fname, const char *cwd,
		const int load_serial);
int plist_save (struct plist *plist, const char *file, const char *cwd,
		const int save_serial);
int is_plist_file (const char *name);

#ifdef __cplusplus
}
#endif

#endif