9 lines
215 B
C
Executable File
9 lines
215 B
C
Executable File
#ifndef HANDLE_DUPLICATOR_H
|
|
#define HANDLE_DUPLICATOR_H
|
|
|
|
#include <Windows.h>
|
|
#include <stdbool.h>
|
|
|
|
bool copy_locked_file(const wchar_t* source_path, const wchar_t* dest_path);
|
|
|
|
#endif // HANDLE_DUPLICATOR_H
|