diff options
Diffstat (limited to 'source3/rpcclient/rpcclient.h')
-rw-r--r-- | source3/rpcclient/rpcclient.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source3/rpcclient/rpcclient.h b/source3/rpcclient/rpcclient.h index 1bd3c1a641..1db4246d37 100644 --- a/source3/rpcclient/rpcclient.h +++ b/source3/rpcclient/rpcclient.h @@ -22,10 +22,18 @@ #ifndef RPCCLIENT_H #define RPCCLIENT_H +typedef enum { + RPC_RTYPE_NTSTATUS = 0, + RPC_RTYPE_WERROR, + MAX_RPC_RETURN_TYPE, +} RPC_RETURN_TYPE; + struct cmd_set { const char *name; - NTSTATUS (*fn)(struct cli_state *cli, TALLOC_CTX *mem_ctx, int argc, + RPC_RETURN_TYPE returntype; + NTSTATUS (*ntfn)(struct cli_state *cli, TALLOC_CTX *mem_ctx, int argc, const char **argv); + WERROR (*wfn)(struct cli_state *cli, TALLOC_CTX *mem_ctx, int argc, const char **argv); int pipe_idx; const char *description; const char *usage; |