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 >
Text File  |  2006-11-29  |  524b  |  27 lines

  1. /**
  2.  * File:    modules/Call.ycp
  3.  * Package:    yast2
  4.  * Summary:    Workaround for CallFunction problems
  5.  * Authors:    Michal Svec <msvec@suse.cz>
  6.  *
  7.  * $Id: Call.ycp 10158 2003-06-23 12:48:40Z visnov $
  8.  */
  9.  
  10. {
  11.  
  12. module "Call";
  13.  
  14. /**
  15.  * Workaround function for WFM::CallFunction scope problems (#22486).
  16.  * Same use as WFM::CallFunction.
  17.  * @param f function client to be called
  18.  * @param a function params
  19.  * @return function result
  20.  */
  21. global define any Function(string f, list a) ``{
  22.     return WFM::CallFunction(f,a);
  23. }
  24.  
  25. /* EOF */
  26. }
  27.