From 79c63ee8cdce5c8355125433b8e216348e897c0b Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Sun, 12 Feb 2012 00:51:09 +0100 Subject: [PATCH] Update Dispatch layer --- libchimara/gi_dispa.c | 25 +++++++++++++++++++++++-- libchimara/gi_dispa.h | 6 +++--- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/libchimara/gi_dispa.c b/libchimara/gi_dispa.c index f0099b9..2b7ae02 100644 --- a/libchimara/gi_dispa.c +++ b/libchimara/gi_dispa.c @@ -1,8 +1,8 @@ -/* gi_dispa.c: Dispatch layer for Glk API, version 0.7.3. +/* gi_dispa.c: Dispatch layer for Glk API, version 0.7.4. Designed by Andrew Plotkin http://eblong.com/zarf/glk/ - This file is copyright 1998-2011 by Andrew Plotkin. You may copy, + This file is copyright 1998-2012 by Andrew Plotkin. You may copy, distribute, and incorporate it into your own programs, by any means and under any conditions, as long as you do not modify it. You may also modify this file, incorporate it into your own programs, @@ -80,6 +80,7 @@ static gidispatch_intconst_t intconstant_table[] = { { "gestalt_LineTerminatorKey", (19) }, { "gestalt_LineTerminators", (18) }, { "gestalt_MouseInput", (4) }, + { "gestalt_ResourceStream", (22) }, { "gestalt_Sound", (8) }, { "gestalt_Sound2", (21) }, { "gestalt_SoundMusic", (13) }, @@ -316,6 +317,10 @@ static gidispatch_function_t function_table[] = { { 0x016E, glk_date_to_simple_time_utc, "date_to_simple_time_utc" }, { 0x016F, glk_date_to_simple_time_local, "date_to_simple_time_local" }, #endif /* GLK_MODULE_DATETIME */ +#ifdef GLK_MODULE_RESOURCE_STREAM + { 0x0049, glk_stream_open_resource, "stream_open_resource" }, + { 0x013A, glk_stream_open_resource_uni, "stream_open_resource_uni" }, +#endif /* GLK_MODULE_RESOURCE_STREAM */ }; glui32 gidispatch_count_classes() @@ -654,6 +659,13 @@ char *gidispatch_prototype(glui32 funcnum) return "3>+[8IsIsIsIsIsIsIsIs]Iu:Is"; #endif /* GLK_MODULE_DATETIME */ +#ifdef GLK_MODULE_RESOURCE_STREAM + case 0x0049: /* stream_open_resource */ + return "3IuIu:Qb"; + case 0x013A: /* stream_open_resource_uni */ + return "3IuIu:Qb"; +#endif /* GLK_MODULE_RESOURCE_STREAM */ + default: return NULL; } @@ -1472,6 +1484,15 @@ void gidispatch_call(glui32 funcnum, glui32 numargs, gluniversal_t *arglist) break; #endif /* GLK_MODULE_DATETIME */ +#ifdef GLK_MODULE_RESOURCE_STREAM + case 0x0049: /* stream_open_resource */ + arglist[3].opaqueref = glk_stream_open_resource(arglist[0].uint, arglist[1].uint); + break; + case 0x013A: /* stream_open_resource_uni */ + arglist[3].opaqueref = glk_stream_open_resource_uni(arglist[0].uint, arglist[1].uint); + break; +#endif /* GLK_MODULE_RESOURCE_STREAM */ + default: /* do nothing */ break; diff --git a/libchimara/gi_dispa.h b/libchimara/gi_dispa.h index 6ec3b96..ddb1b19 100644 --- a/libchimara/gi_dispa.h +++ b/libchimara/gi_dispa.h @@ -1,11 +1,11 @@ #ifndef _GI_DISPA_H #define _GI_DISPA_H -/* gi_dispa.h: Header file for dispatch layer of Glk API, version 0.7.3. +/* gi_dispa.h: Header file for dispatch layer of Glk API, version 0.7.4. Designed by Andrew Plotkin - http://www.eblong.com/zarf/glk/index.html + http://eblong.com/zarf/glk/index.html - This file is copyright 1998-2011 by Andrew Plotkin. You may copy, + This file is copyright 1998-2012 by Andrew Plotkin. You may copy, distribute, and incorporate it into your own programs, by any means and under any conditions, as long as you do not modify it. You may also modify this file, incorporate it into your own programs, -- 2.30.2