home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
boot
/
i386
/
root
/
usr
/
share
/
YaST2
/
modules
/
Call.ycp
< prev
next >
Wrap
Text File
|
2006-11-29
|
524b
|
27 lines
/**
* File: modules/Call.ycp
* Package: yast2
* Summary: Workaround for CallFunction problems
* Authors: Michal Svec <msvec@suse.cz>
*
* $Id: Call.ycp 10158 2003-06-23 12:48:40Z visnov $
*/
{
module "Call";
/**
* Workaround function for WFM::CallFunction scope problems (#22486).
* Same use as WFM::CallFunction.
* @param f function client to be called
* @param a function params
* @return function result
*/
global define any Function(string f, list a) ``{
return WFM::CallFunction(f,a);
}
/* EOF */
}