1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-28 01:29:37 +00:00

Add ERR_INVALID error code

This commit is contained in:
Peter Evans 2018-02-04 00:06:04 -06:00
parent bef19539f6
commit dd2b956b49

View File

@ -13,6 +13,7 @@ enum log_errcode {
ERR_OOB, // out of bounds
ERR_BADFILE,
ERR_BADOPT, // bad option (e.g. from getopt)
ERR_INVALID, // invalid operation
ERR_GFXINIT, // couldn't initialize graphics
ERR_GFXOP, // we couldn't execute a specific graphic operation
};