HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
security_win32.hpp
1// Copyright Take Vos 2022.
2// Distributed under the Boost Software License, Version 1.0.
3// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
4
5
6#include "security.hpp"
7#include <windows.h>
8
9namespace tt::inline v1 {
10
11
12void secure_clear(void *ptr, size_t size) noexcept
13{
14 SecureZeroMemory(ptr, size);
15}
16
17}
18
DOXYGEN BUG.
Definition algorithm.hpp:13
void secure_clear(void *ptr, size_t size) noexcept
Securely clear memory.
Definition security_win32.hpp:12