summaryrefslogtreecommitdiff
path: root/cmd/ossplay/ossplay_console.h
blob: c0f90fdad0c19d4a29fc5dc09db066556f1f2fa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef _OSSPLAY_CONSOLE_H
#define _OSSPLAY_CONSOLE_H

#include <stddef.h>
#include <sys/types.h>

typedef enum {
  ERRORM,
  HELPM,
  NORMALM,
  NOTIFYM,
  WARNM,
  STARTM,
  CONTM,
  ENDM,
  VERBOSEM
}
prtype_t;

void clear_update (void);
void ossplay_free (void *);
void * ossplay_malloc (size_t);
off_t ossplay_lseek_stdin (int, off_t, int);
char * ossplay_strdup (const char *);
#ifdef OGG_SUPPORT
int ossplay_dlclose (void *);
void * ossplay_dlopen (const char *);
const char * ossplay_dlerror (void);
int ossplay_vdlsym (void *, ...);
#endif
void perror_msg (const char * s);
void print_msg (prtype_t, const char *, ...);
void print_record_update (int, double, const char *, int);
void print_update (int, double, const char *);
char * totime (double);

#endif