pike.git
/
lib
/
modules
/
Remote.pmod
/
call.pike
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Remote.pmod/call.pike:1:
+
#include "remote.h"
+
+
string objectid;
+
string name;
+
object con;
+
object ctx;
+
+
mixed `() (mixed ... args)
+
{
+
return con->call_sync(ctx->encode_call(objectid, name, args));
+
}
+
+
void create(string oid, string n, object cn, object ct)
+
{
+
objectid = oid;
+
name = n;
+
con = cn;
+
ctx = ct;
+
}
Newline at end of file added.