mirror of https://github.com/x64dbg/TitanEngine
10 lines
393 B
C
10 lines
393 B
C
#ifndef _GLOBAL_GARBAGE_H
|
|
#define _GLOBAL_GARBAGE_H
|
|
|
|
// Global.Garbage.functions:
|
|
bool CreateGarbageItem(void* outGargabeItem, int MaxGargabeStringSize);
|
|
bool RemoveGarbageItem(wchar_t* szGarbageItem, bool RemoveFolder);
|
|
bool FillGarbageItem(wchar_t* szGarbageItem, wchar_t* szFileName, void* outGargabeItem, int MaxGargabeStringSize);
|
|
void EmptyGarbage();
|
|
|
|
#endif //_GLOBAL_GARBAGE_H
|