From 09e6dfb8e8d1447306951e34e4e2211037edb9be Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 14 Sep 2008 15:44:57 +0200 Subject: net lua This adds a lua command line interpreter with some sample code how to build your own data types based on our internal data types. Not meant as the final word, but as a playground for experiments for people. Might be removed later when we find this turns out to be too awkward. --- source3/utils/net_proto.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/utils/net_proto.h') diff --git a/source3/utils/net_proto.h b/source3/utils/net_proto.h index c058a0166f..a65fbbb6eb 100644 --- a/source3/utils/net_proto.h +++ b/source3/utils/net_proto.h @@ -423,6 +423,11 @@ int net_usershare_usage(struct net_context *c, int argc, const char **argv); int net_usershare_help(struct net_context *c, int argc, const char **argv); int net_usershare(struct net_context *c, int argc, const char **argv); +/* The following definitions come from utils/net_lua.c */ + +int net_lua(struct net_context *c, int argc, const char **argv); + + /* The following definitions come from utils/net_util.c */ NTSTATUS net_rpc_lookup_name(struct net_context *c, -- cgit