ltfat / libltfat

Backend library for LTFAT
http://ltfat.github.io/libltfat
GNU General Public License v3.0
12 stars 2 forks source link

Error code returned from C library functions #1

Open susnak opened 8 years ago

susnak commented 8 years ago

From @susnak on April 17, 2015 8:34

This will at least immediately identify that the error comes from the backend library.

Possible return types will be stored as enum ltfatStatus

typedef enum { ltfatUnspecErr = 1, ltfatMemAlocErr = 2, ltfatNoErr = 0, ... } ltfatStatus;

Copied from original issue: ltfat/ltfat#35