<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to PXL Minimum program</title><link>https://sourceforge.net/p/libpxl/wiki/PXL%2520Minimum%2520program/</link><description>Recent changes to PXL Minimum program</description><atom:link href="https://sourceforge.net/p/libpxl/wiki/PXL%20Minimum%20program/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 10 Jun 2013 20:38:39 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/libpxl/wiki/PXL%20Minimum%20program/feed" rel="self" type="application/rss+xml"/><item><title>PXL Minimum program modified by Eric Begue</title><link>https://sourceforge.net/p/libpxl/wiki/PXL%2520Minimum%2520program/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -1,7 +1,7 @@
-The simplest pxl program
-------------------------
+PXL Minimum program
+-------------------

-This is the simplest PXL program.
+The following code listing is the minimum program you can do with libpxl. It's a good starting point to test if libpxl is well installed and setup in your development environment. If the compiling and linking of this program went well, you should have a simple black window, meaning that libpxl has correctly iniatialized and it is running.

 ~~~~~~
 #!c
@@ -17,7 +17,17 @@
 }
 ~~~~~~

+On the first line is the inclusion on the libpxl header, that's all you need to use it.
+
+On line 3, libpxl is initialized. Note that the init function requires the main arguments to be passed in. The main arguments has used to pass some commands to libpxl, for example for debugging.
+
+The line 6, is the main loop. This is where your application is running most of the time.
+
+The line 7 is reached when the application ends. The quit function has the task of freeing the ressources before the program exits.
+
+The line 9 is the standard return to signal the operating system that the programmed ended correctly without any error.  

+
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Begue</dc:creator><pubDate>Mon, 10 Jun 2013 20:38:39 -0000</pubDate><guid>https://sourceforge.net7dd55ad810ab0df0bd5e4582b569a5bec4183675</guid></item><item><title>Simplest working program modified by Eric Begue</title><link>https://sourceforge.net/p/libpxl/wiki/Simplest%2520working%2520program/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,5 +1,9 @@
+The simplest pxl program
+------------------------
+
 This is the simplest PXL program.
-{{{
+
+~~~~~~
 #!c
 #include pxl.h&gt;

@@ -11,7 +15,7 @@

     return 0;
 }
-}}}
+~~~~~~

&lt;/pre&gt;&lt;pre&gt;
&lt;/pre&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Begue</dc:creator><pubDate>Sun, 09 Jun 2013 19:57:01 -0000</pubDate><guid>https://sourceforge.net806eb56a959f585f51ec906f65e74405a9d98a67</guid></item><item><title>Simplest working program modified by Eric Begue</title><link>https://sourceforge.net/p/libpxl/wiki/Simplest%2520working%2520program/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,6 +1,6 @@
 This is the simplest PXL program.
-~~~~~~~~~~~~
-:::c
+{{{
+#!c
 #include pxl.h&gt;

 int main( int argc, char* argv[] )
@@ -11,7 +11,7 @@

     return 0;
 }
-~~~~~~~~~~~~
+}}}

&lt;/pre&gt;&lt;pre&gt;
&lt;/pre&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Begue</dc:creator><pubDate>Sun, 09 Jun 2013 19:48:41 -0000</pubDate><guid>https://sourceforge.net2a6d71849e9e64ef444e9f0c8c5cb091ed522cc2</guid></item><item><title>WikiPage Simplest working program modified by Eric Begue</title><link>https://sourceforge.net/p/libpxl/wiki/Simplest%2520working%2520program/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Begue</dc:creator><pubDate>Tue, 12 Mar 2013 23:42:08 -0000</pubDate><guid>https://sourceforge.nete14151ee982427d6499aec5c10c80f3ab7ea03a4</guid></item><item><title>WikiPage simplest working program modified by Eric Begue</title><link>https://sourceforge.net/p/libpxl/wiki/simplest%2520working%2520program/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This is the simplest PXL program.&lt;br /&gt;
    :::c&lt;br /&gt;
    #include pxl.h&gt;&lt;br&gt;
&lt;br&gt;
    int main( int argc, char* argv[] )&lt;br&gt;
    {&lt;br&gt;
        pxl::init( argc, argv );&lt;br&gt;
        pxl::loop();&lt;br&gt;
        pxl::quit();&lt;br&gt;
&lt;br&gt;
        return 0;&lt;br&gt;
    }&lt;p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Eric Begue</dc:creator><pubDate>Tue, 12 Mar 2013 23:39:08 -0000</pubDate><guid>https://sourceforge.net5f735d724cbdb2f675604465b4265658a41eee36</guid></item></channel></rss>