diff options
author | 2020-10-15 12:22:26 +0200 | |
---|---|---|
committer | 2020-10-30 16:51:00 +0100 | |
commit | 2a77f20277736a9f086f973132bcf7a062a332ae (patch) | |
tree | 2827d87623ca5fc08e3b860352111b01582d1b6a /api/registry.c | |
parent | api: added missing allocation-failure check (diff) | |
download | wintun-2a77f20277736a9f086f973132bcf7a062a332ae.tar.xz wintun-2a77f20277736a9f086f973132bcf7a062a332ae.zip |
api: remove dead code
Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to 'api/registry.c')
-rw-r--r-- | api/registry.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/api/registry.c b/api/registry.c index f735d4d..30a152c 100644 --- a/api/registry.c +++ b/api/registry.c @@ -85,17 +85,6 @@ RegistryOpenKeyWait( return OpenKeyWait(Key, Buf, Access, GetTickCount64() + Timeout, KeyOut); } -WINTUN_STATUS -RegistryWaitForKey(_In_ HKEY Key, _In_z_count_c_(MAX_REG_PATH) const WCHAR *Path, _In_ DWORD Timeout) -{ - HKEY k; - DWORD Result = RegistryOpenKeyWait(Key, Path, KEY_NOTIFY, Timeout, &k); - if (Result != ERROR_SUCCESS) - return Result; - RegCloseKey(k); - return ERROR_SUCCESS; -} - /** * Validates and/or sanitizes string value read from registry. * |