summaryrefslogtreecommitdiff
path: root/source3/rpc_server
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-04-09 00:11:41 +0200
committerGünther Deschner <gd@samba.org>2010-04-09 00:27:58 +0200
commitffcaa7328079b45e2a137e637b686aa2edb4219b (patch)
treeca54a0a624f2f1c2c193dcd8a7c3862be9c44495 /source3/rpc_server
parente42d5b5ae3da7d7a32428c50c8f518eab2dfbf30 (diff)
downloadsamba-ffcaa7328079b45e2a137e637b686aa2edb4219b.tar.gz
samba-ffcaa7328079b45e2a137e637b686aa2edb4219b.tar.bz2
samba-ffcaa7328079b45e2a137e637b686aa2edb4219b.zip
s3-winreg: add winreg_DeleteKeyEx stub.
Guenther
Diffstat (limited to 'source3/rpc_server')
-rw-r--r--source3/rpc_server/srv_winreg_nt.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/rpc_server/srv_winreg_nt.c b/source3/rpc_server/srv_winreg_nt.c
index 38be56ede9..051930110e 100644
--- a/source3/rpc_server/srv_winreg_nt.c
+++ b/source3/rpc_server/srv_winreg_nt.c
@@ -985,3 +985,15 @@ WERROR _winreg_QueryMultipleValues2(pipes_struct *p, struct winreg_QueryMultiple
return WERR_NOT_SUPPORTED;
}
+/*******************************************************************
+ _winreg_DeleteKeyEx
+ ********************************************************************/
+
+WERROR _winreg_DeleteKeyEx(pipes_struct *p, struct winreg_DeleteKeyEx *r)
+{
+ /* fill in your code here if you think this call should
+ do anything */
+
+ p->rng_fault_state = True;
+ return WERR_NOT_SUPPORTED;
+}