diff options
author | midipix <writeonce@midipix.org> | 2016-10-25 22:09:44 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-10-25 22:47:15 -0400 |
commit | 7a0b562760299dde7d4a07c430c7c47b67a8e5e7 (patch) | |
tree | cf93216d73781a6751bde117997b081684ea206c /src/internal | |
parent | b03974ba314764900754acca3cc59ccd8fc7ee65 (diff) | |
download | sofort-7a0b562760299dde7d4a07c430c7c47b67a8e5e7.tar.bz2 sofort-7a0b562760299dde7d4a07c430c7c47b67a8e5e7.tar.xz |
driver: added initial error info vector and buffer allocation.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/sofort_driver_impl.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/internal/sofort_driver_impl.h b/src/internal/sofort_driver_impl.h index 5ee4952..0808b55 100644 --- a/src/internal/sofort_driver_impl.h +++ b/src/internal/sofort_driver_impl.h @@ -18,8 +18,14 @@ enum app_tags { }; struct sfrt_driver_ctx_impl { - struct sfrt_common_ctx cctx; - struct sfrt_driver_ctx ctx; + struct sfrt_common_ctx cctx; + struct sfrt_driver_ctx ctx; + const struct sfrt_unit_ctx * euctx; + const char * eunit; + struct sfrt_error_info ** errinfp; + struct sfrt_error_info ** erricap; + struct sfrt_error_info * erriptr[64]; + struct sfrt_error_info erribuf[64]; }; struct sfrt_unit_ctx_impl { |