summaryrefslogtreecommitdiff
path: root/source4/scripting/ejs/smbcalls.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-07-15 05:40:34 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:23:07 -0500
commit63535f566e2fbe9244fd3e50b9c8d1281b822fc0 (patch)
treee14f9101f03c29c7a076576efd36d3ac7a8e381f /source4/scripting/ejs/smbcalls.h
parent970ff9ba8d0b47fce6760e6adf9458820c5084b9 (diff)
downloadsamba-63535f566e2fbe9244fd3e50b9c8d1281b822fc0.tar.gz
samba-63535f566e2fbe9244fd3e50b9c8d1281b822fc0.tar.bz2
samba-63535f566e2fbe9244fd3e50b9c8d1281b822fc0.zip
r8481: switched ldb ejs called over to an OO interface, so you do:
var ldb = ldb_init(); res = ldb.search(dbfile, "(objectClass=user)"); you can also do: ldbSearch = ldb.search; res = ldbSearch(dbfile, "(objectClass=user)"); if you want the old interface (ie. you can use this to import functions into the global or local namespace). (This used to be commit 3093057d9735cbb62f57e7159264d5a28b85320f)
Diffstat (limited to 'source4/scripting/ejs/smbcalls.h')
-rw-r--r--source4/scripting/ejs/smbcalls.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/scripting/ejs/smbcalls.h b/source4/scripting/ejs/smbcalls.h
index 8002e3d8bb..aa5c27b4f5 100644
--- a/source4/scripting/ejs/smbcalls.h
+++ b/source4/scripting/ejs/smbcalls.h
@@ -26,3 +26,6 @@ void mpr_Return(int eid, struct MprVar);
NTSTATUS mprSetVar(struct MprVar *v, const char *name, struct MprVar val);
NTSTATUS mprGetVar(struct MprVar **v, const char *name);
void mprAddArray(struct MprVar *var, int i, struct MprVar v);
+void mprSetCFunction(struct MprVar *obj, const char *name, MprCFunction fn);
+void mprSetStringCFunction(struct MprVar *obj, const char *name, MprStringCFunction fn);
+