infix
A JIT-Powered FFI Library for C
|
A structure holding detailed information about the last error that occurred on the current thread. More...
#include <infix.h>
Public Attributes | |
infix_error_category_t | category |
The general category of the error. | |
infix_error_code_t | code |
The specific error code. | |
size_t | position |
For parser errors, the 0-based index in the input string where the error occurred. | |
long | system_error_code |
For OS-level errors (errno, GetLastError()) | |
char | message [256] |
For descriptive strings (dlerror(), etc.) | |
A structure holding detailed information about the last error that occurred on the current thread.
infix_error_category_t infix_error_details_t::category |
The general category of the error.
infix_error_code_t infix_error_details_t::code |
The specific error code.
char infix_error_details_t::message[256] |
For descriptive strings (dlerror(), etc.)
size_t infix_error_details_t::position |
For parser errors, the 0-based index in the input string where the error occurred.
long infix_error_details_t::system_error_code |
For OS-level errors (errno, GetLastError())