Очистить переменную в оперативной памяти |
Previous Top Next |
If you want to erase a variable, that no other program can read it out of the memory anymore, just use this function:
Code: |
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.
©Drkb::00824
Взято с сайта: http://www.swissdelphicenter.ch