A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita
audio
rust
zig
deno
mpris
rockbox
mpd
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2014 Franklin Wei, Benjamin Brown
11 * Copyright (C) 2004 Gregory Montoir
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22
23#ifndef __FILE_H__
24#define __FILE_H__
25
26#include "intern.h"
27
28typedef struct File {
29 int fd;
30 bool gzipped;
31 bool ioErr;
32} File;
33
34void file_create(struct File*, bool gzipped);
35
36bool file_open(struct File*, const char *filename, const char *directory, const char *mode);
37void file_close(struct File*);
38bool file_ioErr(struct File*);
39void file_seek(struct File*, int32_t off);
40int file_read(struct File*, void *ptr, uint32_t size);
41uint8_t file_readByte(struct File*);
42uint16_t file_readUint16BE(struct File*);
43uint32_t file_readUint32BE(struct File*);
44int file_write(struct File*, void *ptr, uint32_t size);
45void file_writeByte(struct File*, uint8_t b);
46void file_writeUint16BE(struct File*, uint16_t n);
47void file_writeUint32BE(struct File*, uint32_t n);
48
49void file_remove(const char* filename, const char* directory);
50
51#endif