lxwlxwayy 发表于 2010-7-5 15:55:04

内存函数如何应用

_ReduceMemory(@AutoItPID)
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)
               DllCall('kernel32.dll', 'int', 'CloseHandle', 'int', $ai_Handle)
         Else
               Local $ai_Return = DllCall("psapi.dll", 'int', 'EmptyWorkingSet', 'long', -1)
         EndIf

         Return $ai_Return
EndFunc   ;==>_ReduceMemory
页: [1]
查看完整版本: 内存函数如何应用