fplayer
C99 Falcon Sequence (fseq) file player for Light-O-Rama hardware (like xLights)
Loading...
Searching...
No Matches
errcode.h
Go to the documentation of this file.
1
3#ifndef FPLAYER_ERRCODE_H
4#define FPLAYER_ERRCODE_H
5
8#define FP_EOK 0
9
12#define FP_ERANGE 1
13
16#define FP_EINVLARG 2
17
20#define FP_ESYSCALL 3
21
24#define FP_ENOMEM 4
25
28#define FP_EPTHREAD 5
29
32#define FP_EZSTD 6
33
36#define FP_EAUDINIT 7
37
40#define FP_EAUDPLAY 8
41
44#define FP_EINVLBIN 9
45
48#define FP_EINVLFMT 10
49
52#define FP_ENOSDEV 11
53
56#define FP_ESDEVINIT 12
57
60#define FP_ECOUNT 13
61
67const char* FP_strerror(int err);
68
69#endif//FPLAYER_ERRCODE_H
const char * FP_strerror(int err)
Returns the error message string for the given error code.
Definition errcode.c:13