X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=error.h;h=fe44ff5c50487744881ea1d21d1007528a2ecd70;hp=c06d316d75c19b306ce509d04f43866fbf392b7a;hb=e3dfede17fa6c297f89a34cb997b7276c884497a;hpb=6e2812e8cb09f4e5d9d12b9d768d134b36c3dd17 diff --git a/error.h b/error.h index c06d316d..fe44ff5c 100644 --- a/error.h +++ b/error.h @@ -83,6 +83,7 @@ PARA_ERROR(EMPTY, "file is empty"), \ PARA_ERROR(ENCRYPT, "encrypt error"), \ PARA_ERROR(EOF, "end of file"), \ + PARA_ERROR(EOP, "end of playlist"), \ PARA_ERROR(FEC_BAD_IDX, "invalid index vector"), \ PARA_ERROR(FECDEC_EOF, "received eof packet"), \ PARA_ERROR(FECDEC_OVERRUN, "fecdec output buffer overrun"), \ @@ -167,6 +168,7 @@ PARA_ERROR(OGG_PACKET_IN, "ogg_stream_packetin() failed"), \ PARA_ERROR(OGG_STREAM_FLUSH, "ogg_stream_flush() failed"), \ PARA_ERROR(OGG_SYNC, "internal ogg storage overflow"), \ + PARA_ERROR(OPENSSH_PARSE, "could not parse openssh private key"), \ PARA_ERROR(OPUS_COMMENT, "invalid or corrupted opus comment"), \ PARA_ERROR(OPUS_DECODE, "opus decode error"), \ PARA_ERROR(OPUS_HEADER, "invalid opus header"), \ @@ -254,8 +256,9 @@ enum para_error_codes {PARA_ERRORS}; #undef PARA_ERROR #define PARA_ERROR(err, msg) msg -/** Array of error strings. */ +/** All .c files need the declararation of the array of error strings. */ extern const char * const para_errlist[]; +/** Exactly one .c file per executable must define the array. */ #define DEFINE_PARA_ERRLIST const char * const para_errlist[] = {PARA_ERRORS} /** @@ -265,11 +268,10 @@ extern const char * const para_errlist[]; */ #define SYSTEM_ERROR_BIT 30 -/** - * Like the SYSTEM_ERROR_BIT, but indicates an error from the osl library. - */ +/** Like SYSTEM_ERROR_BIT, but for errors from the osl library. */ #define OSL_ERROR_BIT 29 +/** Like SYSTEM_ERROR_BIT, but for errors from the lopsub library. */ #define LLS_ERROR_BIT 28 /** Check whether the system error bit is set. */