File: player.h

package info (click to toggle)
moc 2.2.1-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,220 kB
  • ctags: 1,174
  • sloc: ansic: 11,854; sh: 3,439; makefile: 119
file content (14 lines) | stat: -rw-r--r-- 269 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PLAYER_H
#define PLAYER_H

#include "file_types.h"
#include "buf.h"

void player_cleanup ();
void player (char *file, char *next_file, struct buf *out_buf);
void player_stop ();
void player_seek (const int n);
void player_reset ();
void player_init ();

#endif