api: remove dead code
Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
parent
3058f1e57e
commit
2a77f20277
@ -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.
|
||||
*
|
||||
|
@ -19,9 +19,6 @@ RegistryOpenKeyWait(
|
||||
_In_ DWORD Timeout,
|
||||
_Out_ HKEY *KeyOut);
|
||||
|
||||
WINTUN_STATUS
|
||||
RegistryWaitForKey(_In_ HKEY Key, _In_z_count_c_(MAX_REG_PATH) const WCHAR *Path, _In_ DWORD Timeout);
|
||||
|
||||
WINTUN_STATUS
|
||||
RegistryGetString(_Inout_ WCHAR **Buf, _In_ DWORD Len, _In_ DWORD ValueType);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user