mirror of
https://github.com/wavestone-cdt/EDRSandblast.git
synced 2026-06-11 01:41:20 +00:00
D3FC0N 30 release: Obj callbacks, firewalling, symbols w/ internet, and more
Co-authored-by: Maxime Meignan <maxime.meignan@wavestone.com>
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#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);
|
||||
Reference in New Issue
Block a user