summaryrefslogtreecommitdiff
path: root/src/driver
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-01-06 14:05:29 -0500
committermidipix <writeonce@midipix.org>2016-01-06 14:05:29 -0500
commit2e879cef83189bf50789ea3e3d144738222e828c (patch)
treed52a47d89815a2636ced615d3990cdb962cc63fa /src/driver
parentd27fb44885209a32848465e1abe5fd76f26c780e (diff)
downloadapimagic-2e879cef83189bf50789ea3e3d144738222e828c.tar.bz2
apimagic-2e879cef83189bf50789ea3e3d144738222e828c.tar.xz
amgc_list_unit_enums(): initial implementation and integration.
Diffstat (limited to 'src/driver')
-rw-r--r--src/driver/amgc_driver_ctx.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/driver/amgc_driver_ctx.c b/src/driver/amgc_driver_ctx.c
index c25be55..2b33de4 100644
--- a/src/driver/amgc_driver_ctx.c
+++ b/src/driver/amgc_driver_ctx.c
@@ -197,6 +197,11 @@ int amgc_get_driver_ctx(
ctx->actions[nactions].type = AMGC_ACTION_OUTPUT;
ctx->actions[nactions++].action = AMGC_OUTPUT_ENUM;
break;
+
+ case TAG_LIST_ENUMS:
+ ctx->actions[nactions].type = AMGC_ACTION_OUTPUT;
+ ctx->actions[nactions++].action = AMGC_LIST_ENUM;
+ break;
}
ctx->ctx.program = program;