commit | 43cb03be3a71ba8821546049a72c86a127e103d3 | [log] [tgz] |
---|---|---|
author | Mike Hearn <mike@theoretic.com> | Sat Jan 03 00:38:30 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sat Jan 03 00:38:30 2004 +0000 |
tree | 61c67d21bf98b7ee957fa28dca0a2a4f600827e9 | |
parent | 071b7dae8ae21ae872aceb9549623393f9c438cd [diff] [blame] |
Implemented RegFlushKey and NtFlushKey.
diff --git a/server/registry.c b/server/registry.c index 5b2344d..93e49b9 100644 --- a/server/registry.c +++ b/server/registry.c
@@ -1777,6 +1777,17 @@ } } +/* flush a registry key */ +DECL_HANDLER(flush_key) +{ + struct key *key = get_hkey_obj( req->hkey, 0 ); + if (key) + { + /* we don't need to do anything here with the current implementation */ + release_object( key ); + } +} + /* enumerate registry subkeys */ DECL_HANDLER(enum_key) {