home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magazyn Exec 4
/
CD_Magazyn_EXEC_nr_4.iso
/
Recent
/
util
/
libs
/
IdentifyDev.lha
/
Identify
/
arexx
/
functionname.ify
< prev
next >
Wrap
Text File
|
1997-04-24
|
763b
|
28 lines
/*****************************************************************
** **
** functionname.ify rexxidentify.library demonstration **
** **
******************************************************************
**
** (c) 1997 by Richard Körber -- All Rights Reserved
**
** You may use this example freely for your own programs.
**
*/
/* Add the library functions */
CALL AddLib("/libs/rexxidentify.library",0,-30,0)
SAY "Enter library/device/resource name (e.g. exec.library)"
PULL libname
SAY "Enter function offset (e.g. -456)"
PULL offset
SAY "The function name is '"|| ID_Function(libname,offset) ||"'."
SAY ""
EXIT