X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ZOOM.xs;h=134e94d945548e4b4a65393bc65c01bdc899a65e;hb=049a21e85f718e1d0bfa430d096d022bc30ad4d3;hp=f3b576cbc2471063361789d77948f7bf9c58f151;hpb=7c909bd8b83d8bf0ee1f5615b0df02c7bcb8dba0;p=ZOOM-Perl-moved-to-github.git diff --git a/ZOOM.xs b/ZOOM.xs index f3b576c..134e94d 100644 --- a/ZOOM.xs +++ b/ZOOM.xs @@ -1,4 +1,4 @@ -/* $Id: ZOOM.xs,v 1.50 2007-11-19 12:57:16 mike Exp $ */ +/* $Id: ZOOM.xs,v 1.51 2008-05-14 13:31:39 mike Exp $ */ #include "EXTERN.h" #include "perl.h" @@ -321,16 +321,25 @@ ZOOM_record_error(rec, cp, addinfo, diagset) diagset # See "typemap" for discussion of the "const char *" return-type. -# -### but should use datachunk for in some (not all!) cases. const char * -ZOOM_record_get(rec, type, len) +ZOOM_record_get_string(rec, type) ZOOM_record rec const char* type - int &len + INIT: + int len; + CODE: + RETVAL = ZOOM_record_get(rec, type, &len); + OUTPUT: + RETVAL + +struct datachunk +ZOOM_record_get_binary(rec, type) + ZOOM_record rec + const char* type + CODE: + RETVAL.data = (char*) ZOOM_record_get(rec, type, &RETVAL.len); OUTPUT: RETVAL - len void ZOOM_record_destroy(rec)