You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe we should add error codes by using #define macro. That way we can have uniformity on our return values of our functions.
Each code should be unique and usable by multiple functions and should replace the existing return values i.e:
return -1;
would become
return EFAIL;
or something more specific. @charmitro thoughts on what are error code naming convention should be?
The text was updated successfully, but these errors were encountered:
I believe we should add error codes by using
#define
macro. That way we can have uniformity on our return values of our functions.Each code should be unique and usable by multiple functions and should replace the existing return values i.e:
would become
or something more specific.
@charmitro thoughts on what are error code naming convention should be?
The text was updated successfully, but these errors were encountered: