IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

REXX and METAL C


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10872
Location: italy

PostPosted: Thu Jun 05, 2014 3:40 pm
Reply with quote

here is a sample ( tested and working ) on how to write a REXX external function in METAL C

Code:

#pragma csect(CODE, "CRXWTO$")
#pragma prolog(CRXWTO,"CCPROLOG")
#pragma epilog(CRXWTO,"CCEPILOG")

#include "metal.h"
#include "string.h"
#include "stdio.h"

#include "irxefpl.h"
#include "irxargtb.h"
#include "irxenvb.h"
#include "irxevalb.h"
#include "irxshvb.h"

__asm(" WTO TEXT=,MF=L " : "DS"(wtol));

struct WTO_TEXT {
    unsigned short l;
    char t[121];
} wto_text ;

int CRXWTO(struct efpl efpl)
{
    struct envblock *envp ;
    struct evalblock *evalp  ;

    struct argtable_entry *argp ;

    argp = ( struct argtable_entry * ) efpl.efplarg ;
    evalp = * ( struct evalblock * * ) efpl.efpleval ;

    /* arg(1) wto text */
    if ((int) argp->argtable_argstring_ptr == 0xffffffff)
    {
       sprintf(&evalp->evalblock_evdata, "%d", 4);
       evalp->evalblock_evlen = strlen(&evalp->evalblock_evdata);
       return(0) ;
    }


    if (argp->argtable_argstring_length > 120)
    {
       sprintf(&evalp->evalblock_evdata, "%d", 8);
       evalp->evalblock_evlen = strlen(&evalp->evalblock_evdata);
       return(0) ;
    }

    wto_text.l = argp->argtable_argstring_length;
    memcpy(wto_text.t, argp->argtable_argstring_ptr, wto_text.l);
    wto_text.t[wto_text.l] = 0;

    __asm(" WTO TEXT=,MF=L " : "DS"(wtob));
    wtob=wtol;
    __asm( " WTO text=(%0),MF=(E,(%1)) "
           : :
           "r"(&wto_text), "r"(&wtob));

    sprintf(&evalp->evalblock_evdata, "%d", 0);
    evalp->evalblock_evlen = strlen(&evalp->evalblock_evdata);
    return (0) ;
}
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Running REXX through JOB CLIST & REXX 13
No new posts Error to read log with rexx CLIST & REXX 11
No new posts isfline didnt work in rexx at z/OS ve... CLIST & REXX 7
No new posts run rexx code with jcl CLIST & REXX 15
No new posts Execute secondary panel of sdsf with ... CLIST & REXX 1
Search our Forums:

Back to Top