blob: 0bd03343c9107901e42fa2e218a56d9924a559a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "list.h"
#include "util.h"
struct track {
wchar_t *name;
struct list tags;
char *fname, *fpath;
int fid;
};
struct track *track_alloc(const char *dir, const char *file, int fid);
void track_free(struct track *t);
|