summaryrefslogtreecommitdiff
path: root/mpq-errors.c
blob: e0b8655a7a6105803e98c55813ba45d0a1df4447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "mpq-errors.h"
#include "errors.h"

static const char * error_strings[] = {
    "No error.",
    "Error opening file.",
    "File specified isn't an MPQ archive.",
    "Not enough memory.",
    "File read error.",
};

static const char * wrong_errno = "Invalid error number - internal error.";

int mpqlib_errno() {
    return __mpqlib_errno;
}

const char * mpqlib_error() {
    if ((__mpqlib_errno < 0) || (__mpqlib_errno >= MPQLIB_ERRORS_MAX))
        return wrong_errno;
    return error_strings[__mpqlib_errno];
}