<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>DelphiTips.net &#187; process</title>
	<atom:link href="http://www.delphitips.net/tag/process/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.delphitips.net</link>
	<description>...free Delphi tips &#38; source code repository</description>
	<lastBuildDate>Fri, 24 Jul 2009 22:19:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Get Process Memory Info</title>
		<link>http://www.delphitips.net/2008/09/29/get-process-memory-info/</link>
		<comments>http://www.delphitips.net/2008/09/29/get-process-memory-info/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 18:21:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/?p=54</guid>
		<description><![CDATA[If you want to know how many bytes of memory is using your process, here is simple example. We will need standard psAPI unit. Using API function GetProcessMemoryInfo, we can get amount of used bytes of memory. unit Unit1; &#160; interface &#160; uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, psAPI; &#160; [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2008/09/29/get-process-memory-info/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set priority level of running application (process)</title>
		<link>http://www.delphitips.net/2007/06/16/set-priority-level-of-running-application-process/</link>
		<comments>http://www.delphitips.net/2007/06/16/set-priority-level-of-running-application-process/#comments</comments>
		<pubDate>Sat, 16 Jun 2007 15:25:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[priority]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[set]]></category>

		<guid isPermaLink="false">http://www.delphitips.net/2007/06/16/set-priority-level-of-running-application-process/</guid>
		<description><![CDATA[Using SetPriorityClass function, you can set priority level of your running application. Same functionality is in the Task Manager (just rightclick the process in the list and select priority level). procedure SetPriorityLevel&#40;P: byte&#41;; begin case p of 1: Setpriorityclass&#40;GetCurrentProcess&#40;&#41;, IDLE_PRIORITY_CLASS&#41;; 2: Setpriorityclass&#40;GetCurrentProcess&#40;&#41;, NORMAL_PRIORITY_CLASS&#41;; 3: Setpriorityclass&#40;GetCurrentProcess&#40;&#41;, HIGH_PRIORITY_CLASS&#41;; 4: Setpriorityclass&#40;GetCurrentProcess&#40;&#41;, REALTIME_PRIORITY_CLASS&#41;; end; end; Just call this procedure [...]]]></description>
		<wfw:commentRss>http://www.delphitips.net/2007/06/16/set-priority-level-of-running-application-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

