×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Very nice.
Richard Tsujimoto
Consultant
IT Infrastructure
Canon U.S.A., Inc.
( Office: 516-328-5797
2 Fax: 516-328-4588
* Email: rtsujimoto_consultant@xxxxxxxxxxxxxx
Barbara Morris <bmorris@xxxxxxxxxx>
Sent by: c400-l-bounces+rtsujimoto_consultant=cusa.canon.com@xxxxxxxxxxxx
02/23/2009 07:03 PM
Please respond to
C programming iSeries / AS400 <c400-l@xxxxxxxxxxxx>
To
C400-L@xxxxxxxxxxxx
cc
Subject
Re: [C400-L] Submit a program call
Olsson Erik wrote:
I want to submit a call to a program in batch, and the program needs to
take
a number of parameters.
If this was an interactive application I'd create the called program as
a
service program, have a prototyped interface for controlling parameters
and
all would be fine.
Any better solutions than having the program called via SBMJOB to have a
main function and then manually typecast the parms from argv's char * to
their proper ones (say integers)?
If the parameters aren't all the same type, the argv parameter doesn't
have to be coded as an array. It can be coded as a pointer to a struct
with pointer subfields of the required type. (Don't forget the
"program-name" subfield for argv[0].)
typedef struct
{
char *pgmname;
char *userid;
char *code;
int *custno;
} main_args_t;
main (int argc, main_args_t *main_args)
{
char *userid = main_args->userid;
char code = *main_args->code;
int custno = *main_args->custno;
}
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.