diff options
author | midipix <writeonce@midipix.org> | 2016-10-26 16:27:18 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-10-26 22:10:18 -0400 |
commit | 5334b12f17944df8a163d338479fe2090f97ce6b (patch) | |
tree | 4e182f952bee6ac18a89ac31306c05634f50c402 /src/internal | |
parent | 615ccce232a31e0323b5079f5d67ccffd2904230 (diff) | |
download | apimagic-5334b12f17944df8a163d338479fe2090f97ce6b.tar.bz2 apimagic-5334b12f17944df8a163d338479fe2090f97ce6b.tar.xz |
driver: added initial error info vector and buffer allocation.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/apimagic_driver_impl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/internal/apimagic_driver_impl.h b/src/internal/apimagic_driver_impl.h index c2d7dee..2e42ce4 100644 --- a/src/internal/apimagic_driver_impl.h +++ b/src/internal/apimagic_driver_impl.h @@ -31,6 +31,13 @@ struct amgc_driver_ctx_impl { struct amgc_action * actions; struct compilation_env_t ccenv; int fdtmpin; + const struct amgc_unit_ctx * euctx; + const char * eunit; + struct amgc_error_info ** errinfp; + struct amgc_error_info ** erricap; + struct amgc_error_info * erriptr[64]; + struct amgc_error_info erribuf[64]; + }; struct amgc_unit_ctx_impl { |