pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2009-08-19
2009-08-19 18:50:22 by Henrik Grubbström (Grubba) <grubba@grubba.org>
63ef65486ca3f5b76a6888d0b64033eeab40189e (
11
lines) (+
10
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added one further function to the MasterCodec.
Rev: src/builtin.cmod:1.235
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: builtin.cmod,v 1.
234
2009/08/19 18:
32
:
03
grubba Exp $
+
|| $Id: builtin.cmod,v 1.
235
2009/08/19 18:
50
:
22
grubba Exp $
*/ #include "global.h"
4072:
Pike_sp++; stack_pop_keep_top(); }
+
/*! @decl object decode_object(object obj, mixed data)
+
*! Calls @expr{@obj->_decode(@[data])@}.
+
*/
+
PIKEFUN object decode_object(object obj, mixed data)
+
{
+
apply(obj, "_decode", 1);
+
pop_stack();
}
-
+
}
/*! @endclass */