exodius Posted January 8, 2009 Posted January 8, 2009 I'm familiar with the _ReduceMemory function that's all over the forums that follows: Func _ReduceMemory($i_PID = -1) If $i_PID <> -1 Then Local $ai_Handle = DllCall("kernel32.dll", 'int', 'OpenProcess', 'int', 0x1F0FFF, 'int', False, 'int', $i_PID) Local $ai_Return = DllCall("psapi.dll", 'int', 'EmptyWorkingSet', 'long', $ai_Handle[0]) DllCall('kernel32.dll', 'int', 'CloseHandle', 'int', $ai_Handle[0]) Else Local $ai_Return = DllCall("psapi.dll", 'int', 'EmptyWorkingSet', 'long', -1) EndIf Return $ai_Return[0] EndFunc ;==>_ReduceMemoryoÝ÷ ØÌª¹ë-â³ .Úîx§¹Çzj+ɨ{-jY^Æ+-x)®²Ç¬è.ªåÊX¤yëÞ¯.´±ç(Û)ëÖ§ÊÊ+¶ìµ¦â+rË.zÄáyÊxýv»§z÷«Ë,yÊ'vȬjëh×6$list = ProcessList() For $w = 1 to $list[0][0] _ReduceMemory($list[$w][1]) Next I've Googled it and I can't really find anything to say it would, I just wanted to get the community's input on it.
FireFox Posted January 8, 2009 Posted January 8, 2009 @Exodius Your code seems to be good ... Cheers, FireFox.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now