Очистить переменную в оперативной памяти

Материал из DRKB

Очистить переменную в оперативной памяти[править | править код]

If you want to erase a variable, that no other program can read it out of the memory anymore, just use this function:


ZeroMemory(Addr(yourVar), SizeOf(yourVar));
ZeroMemory(Addr(yourStr), Length(yourStr));
// ZeroMemory(Address of the variable, Size of the variable);

Very usefull, if you asked for a password and you want, that nobody other can get it.


Language: en
Source: Взято с сайта: http://www.swissdelphicenter.ch
ID: 00824