mirror of
https://github.com/wavestone-cdt/EDRSandblast.git
synced 2026-06-08 16:37:12 +00:00
48a75a7029
Co-authored-by: Maxime Meignan <maxime.meignan@wavestone.com>
13 lines
300 B
C
13 lines
300 B
C
#pragma once
|
|
|
|
PBYTE ReadFullFileW(LPCWSTR fileName);
|
|
|
|
BOOL FileExistsA(LPCSTR szPath);
|
|
BOOL FileExistsW(LPCWSTR szPath);
|
|
#ifdef UNICODE
|
|
#define FileExists FileExistsW
|
|
#else
|
|
#define FileExists FileExistsA
|
|
#endif // !UNICODE
|
|
|
|
BOOL WriteFullFileW(LPCWSTR fileName, PBYTE fileContent, SIZE_T fileSize); |