<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>menu library</title>
<description> Hello,

I&amp;#039;d like to build a menu thath look like the home brew channel only to start to build an application! Could you give me some infos and/or links could suppot my request?

Thx</description><link>http://forum.wiibrew.org/read.php?11,13029,13029#msg-13029</link><lastBuildDate>Thu, 16 Apr 2026 16:49:59 +0200</lastBuildDate>
<generator>Phorum 5.2.23</generator>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,14235#msg-14235</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,14235#msg-14235</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Tantric</strong><br />Ah. Well, you can&#039;t include C++ files in C - but you can do the reverse. Leave all the code the same, and just renaming the file with your main() - usb.c? to usb.cpp<br /><br />The C code gets compiled as C++, but will work the same.<br /><br />If you really want to compile C stuff into a C++ project as C, just wrap your C code like this (see oggplayer.h for an example - [<a href="http://code.google.com/p/libwiigui/source/browse/trunk/source/oggplayer.h" rel="nofollow">code.google.com</a>]):<br /><br />#ifdef __cplusplus<br />extern "C"<br />{<br />#endif<br /><br />// your C code<br /><br />#ifdef __cplusplus<br />}<br />#endif</div></blockquote><br />Perfect...now all is working good....<br /><br />Another question....is it possible to draw an image rotate using the z axis?]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Tue, 14 Apr 2009 18:14:29 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13951#msg-13951</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13951#msg-13951</link><description><![CDATA[ Ah. Well, you can&#039;t include C++ files in C - but you can do the reverse. Leave all the code the same, and just renaming the file with your main() - usb.c? to usb.cpp<br /><br />The C code gets compiled as C++, but will work the same.<br /><br />If you really want to compile C stuff into a C++ project as C, just wrap your C code like this (see oggplayer.h for an example - [<a href="http://code.google.com/p/libwiigui/source/browse/trunk/source/oggplayer.h" rel="nofollow">code.google.com</a>]):<br /><br />#ifdef __cplusplus<br />extern "C"<br />{<br />#endif<br /><br />// your C code<br /><br />#ifdef __cplusplus<br />}<br />#endif]]></description>
<dc:creator>Tantric</dc:creator>
<category>Coding</category><pubDate>Sat, 11 Apr 2009 20:29:00 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13948#msg-13948</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13948#msg-13948</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Tantric</strong><br /><blockquote class="bbcode"><div><small>Quote<br /></small><strong>trottolo</strong><br />Another stuff...<br /><br />I did an application now I developped in another project the gui....so now I put in the source directory of my application(in a subdirectory called gui) the file and directory of develloped in parrallel.<br /><br />when I include the gui/gui.h of my application I did this error when compiling<br /><br />usb.c<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:158,<br />from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/devkitPro/libogc/include/Metaphrasis.h:96: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;Metaphrasis&#039;<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:162:15: warning: map: No such file or directory<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:231: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;FreeTypeGX&#039;<br />In file included from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/gui.h:38: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;*&#039; token<br />make[1]: *** [usb.o] Error 1<br />"make": *** [build] Error 2<br /><br />why? is there a mistake in the makefile?</div></blockquote><br />Yes, likely you didn&#039;t modify your LIBS line to add the libs from the template.<br />Also your SOURCES line should include source AND source/gui</div></blockquote><br />I already did both...but nothing...the same errors...I put directly your makefile adding source/gui<br /><br />SOURCES := source source/gui source/gui/libwiigui source/gui/images source/gui/fonts source/gui/sounds<br />INCLUDES := source/gui source<br /><br /><br />but nothing....<br /><br />any ideas?<br /><br />P.s. If you have time I found out that if you create a simple c file with a main in the source folder and you copy all the stuffs in a gui subfolder and rename the main function in the demo.cpp ....if you link the simple c file (with the main) to the demo you will have the same error I did (insert #include gui/demo.h)<br /><br />why?]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Sat, 11 Apr 2009 19:46:18 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13946#msg-13946</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13946#msg-13946</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>trottolo</strong><br />ok!!!!!!!!!<br /><br />this issue was making me crazy!<br /><br />Is there a plan to include all the resolution format?<br />Is there a plan to include jpg?<br />Is there a plan to have the stretch functionality in the imageData class?<br /><br />Thx<br />Amedeo</div></blockquote><br />If you have feature requests, feel free to submit them to Google Code: [<a href="http://code.google.com/p/libwiigui/issues/list" rel="nofollow">code.google.com</a>]<br /><br />Stretch and jpg shouldn&#039;t be hard. But the reason I personally didn&#039;t want/need JPG, is because PNG is much better suited for GUI purposes. Files are small, and it supports an alpha channel (transparency). Resolution format is a matter for PNGU, but it is possible to add more support.]]></description>
<dc:creator>Tantric</dc:creator>
<category>Coding</category><pubDate>Sat, 11 Apr 2009 18:42:20 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13945#msg-13945</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13945#msg-13945</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>trottolo</strong><br />Another stuff...<br /><br />I did an application now I developped in another project the gui....so now I put in the source directory of my application(in a subdirectory called gui) the file and directory of develloped in parrallel.<br /><br />when I include the gui/gui.h of my application I did this error when compiling<br /><br />usb.c<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:158,<br />from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/devkitPro/libogc/include/Metaphrasis.h:96: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;Metaphrasis&#039;<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:162:15: warning: map: No such file or directory<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:231: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;FreeTypeGX&#039;<br />In file included from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/gui.h:38: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;*&#039; token<br />make[1]: *** [usb.o] Error 1<br />"make": *** [build] Error 2<br /><br />why? is there a mistake in the makefile?</div></blockquote><br />Yes, likely you didn&#039;t modify your LIBS line to add the libs from the template.<br />Also your SOURCES line should include source AND source/gui]]></description>
<dc:creator>Tantric</dc:creator>
<category>Coding</category><pubDate>Sat, 11 Apr 2009 18:35:19 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13923#msg-13923</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13923#msg-13923</link><description><![CDATA[ Another stuff...<br /><br />I did an application now I developped in another project the gui....so now I put in the source directory of my application(in a subdirectory called gui) the file and directory of develloped in parrallel.<br /><br />when I include the gui/gui.h of my application I did this error when compiling<br /><br />usb.c<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:158,<br />from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/devkitPro/libogc/include/Metaphrasis.h:96: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;Metaphrasis&#039;<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:162:15: warning: map: No such file or directory<br />In file included from c:/projects/wii/USB/USB_AME/source/gui/gui.h:11,<br />from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/FreeTypeGX.h:231: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;FreeTypeGX&#039;<br />In file included from c:/projects/wii/USB/USB_AME/source/usb.c:12:<br />c:/projects/wii/USB/USB_AME/source/gui/gui.h:38: error: expected &#039;=&#039;, &#039;,&#039;, &#039;;&#039;, &#039;asm&#039; or &#039;__attribute__&#039; before &#039;*&#039; token<br />make[1]: *** [usb.o] Error 1<br />"make": *** [build] Error 2<br /><br />why? is there a mistake in the makefile?]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Sat, 11 Apr 2009 15:55:17 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13916#msg-13916</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13916#msg-13916</link><description><![CDATA[ ok!!!!!!!!!<br /><br />this issue was making me crazy!<br /><br />Is there a plan to include all the resolution format?<br />Is there a plan to include jpg?<br />Is there a plan to have the stretch functionality in the imageData class?<br /><br />Thx<br />Amedeo]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Sat, 11 Apr 2009 11:13:32 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13914#msg-13914</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13914#msg-13914</link><description><![CDATA[ Your image file width and height should be multiples of 4, that&#039;s the most important thing. Also save your files in 8 or 16 bit, non-interlaced format. Follow the specs for PNGU, since that&#039;s what libwiigui uses.]]></description>
<dc:creator>Tantric</dc:creator>
<category>Coding</category><pubDate>Sat, 11 Apr 2009 09:28:36 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13910#msg-13910</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13910#msg-13910</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>trottolo</strong><br />Solved....the problem was that i forgot to do a make install after copying!</div></blockquote><br />Ok....I&#039;m using libwiigui that is very nice and complete....I have a big bug!!!<br /><br />there are some png that I can display and some other that I can&#039;t...I don&#039;t understan what is the pèroblem!!!<br /><br />the png fie should have some particular properties?<br /><br />Thx<br />Amedeo<br /><br />Ps this is the code<br /><br />GuiImageData prv_l(prv_png);<br />GuiImage prvLeftBtnImg(&prv_l);<br />GuiButton prvLeftBtn( prvLeftBtnImg.GetWidth(), prvLeftBtnImg.GetHeight());<br />prvLeftBtn.SetPosition((screenwidth-prvLeftBtnImg.GetWidth())/2,(screenheight-80-prvLeftBtnImg.GetHeight())/2);<br />prvLeftBtn.SetImage(&prvLeftBtnImg);<br />prvLeftBtn.SetSoundOver(&btnSoundOver);<br />prvLeftBtn.SetTrigger(&trigA);<br />prvLeftBtn.SetEffectGrow();<br /><br /><br />changing only the name file (prv_png in another) it is working..... why?]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Sat, 11 Apr 2009 07:33:28 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13417#msg-13417</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13417#msg-13417</link><description><![CDATA[ Solved....the problem was that i forgot to do a make install after copying!]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Sun, 05 Apr 2009 22:11:58 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13407#msg-13407</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13407#msg-13407</link><description><![CDATA[ could you give me the link for the download? where I have to put it?]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Sun, 05 Apr 2009 19:13:00 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13378#msg-13378</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13378#msg-13378</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>trottolo</strong><br />I downloaded the required library also...but this is the error code that is coming out...<br /><br /><br />linking ... libwiigui-demo.elf<br />c:/devkitpro/devkitppc/bin/../lib/gcc/powerpc-gekko/4.2.4/../../../../powerpc-gekko/bin/ld.exe: cannot find -lpngu<br />collect2: ld returned 1 exit status<br />make[1]: *** [/c/projects/wii/wii_gui/libwiigui-demo.elf] Error 1<br />"make": *** [build] Error 2</div></blockquote>
You need to install the necessary libraries in the additional download Tantric provides.]]></description>
<dc:creator>Arikado</dc:creator>
<category>Coding</category><pubDate>Sun, 05 Apr 2009 13:42:35 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13363#msg-13363</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13363#msg-13363</link><description><![CDATA[ I downloaded the required library also...but this is the error code that is coming out...<br /><br /><br />linking ... libwiigui-demo.elf<br />c:/devkitpro/devkitppc/bin/../lib/gcc/powerpc-gekko/4.2.4/../../../../powerpc-gekko/bin/ld.exe: cannot find -lpngu<br />collect2: ld returned 1 exit status<br />make[1]: *** [/c/projects/wii/wii_gui/libwiigui-demo.elf] Error 1<br />"make": *** [build] Error 2]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Sun, 05 Apr 2009 10:03:40 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13361#msg-13361</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13361#msg-13361</link><description><![CDATA[ The template is integrated in the source (demo.cpp and menu.cpp). Just compile it, and you&#039;ll get a working demo.]]></description>
<dc:creator>Tantric</dc:creator>
<category>Coding</category><pubDate>Sun, 05 Apr 2009 08:03:37 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13238#msg-13238</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13238#msg-13238</link><description><![CDATA[ seems what I was looking for.....but I downloaded the source code and in the manual you are talking about a template that there isn&#039;t included in the source.....could you send me?]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Sat, 04 Apr 2009 09:45:07 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13203#msg-13203</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13203#msg-13203</link><description><![CDATA[ You can take a look at the just-released libwiigui, here: [<a href="http://www.wiibrew.org/wiki/Libwiigui" rel="nofollow">www.wiibrew.org</a>]]]></description>
<dc:creator>Tantric</dc:creator>
<category>Coding</category><pubDate>Sat, 04 Apr 2009 00:55:37 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13179#msg-13179</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13179#msg-13179</link><description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>trottolo</strong><br />ok....but it is possible to have the homebrew channel source?(or the homebrew browser?)<br /><br />they are free to download?</div></blockquote>Source code for those programs are not available. But a lot of other apps are open source: [<a href="http://wiibrew.org/wiki/List_of_all_homebrew" rel="nofollow">wiibrew.org</a>]]]></description>
<dc:creator>Crayon</dc:creator>
<category>Coding</category><pubDate>Fri, 03 Apr 2009 19:32:48 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13169#msg-13169</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13169#msg-13169</link><description><![CDATA[ ok....but it is possible to have the homebrew channel source?(or the homebrew browser?)<br /><br />they are free to download?]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Fri, 03 Apr 2009 18:02:18 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13149#msg-13149</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13149#msg-13149</link><description><![CDATA[ There really aren&#039;t any advanced tutorials out there...not that I could find. I just started looking at other code and figuring out stuff on my own. Still looking for a good tutorial on using gl2gx that&#039;s actually in english.]]></description>
<dc:creator>RazorChrist</dc:creator>
<category>Coding</category><pubDate>Fri, 03 Apr 2009 13:45:44 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13148#msg-13148</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13148#msg-13148</link><description><![CDATA[ ok thx this are very usefull tutorial for the starting poin.....I did read all this morning.....do you have some more advanced? I need also to develop an application similar to the homebrew channel....the source code is available?is it modular? I am asking this because I want copy the part related to the menu!]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Fri, 03 Apr 2009 13:18:29 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13063#msg-13063</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13063#msg-13063</link><description><![CDATA[ These got me started. They&#039;re easy to follow.<br /><br /><a href="http://www.codemii.com/category/wii-programming-tutorials/" rel="nofollow">http://www.codemii.com/category/wii-programming-tutorials/</a>]]></description>
<dc:creator>RazorChrist</dc:creator>
<category>Coding</category><pubDate>Thu, 02 Apr 2009 21:47:33 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13056#msg-13056</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13056#msg-13056</link><description><![CDATA[ thx for your fast and complete reply....I&#039;m starrting now to code using the wii, so I don&#039;t have so much experience in wii programming but I have a lot using c, java and so on!<br /><br />Could you also guide me to start in the right way? What do I have to know (for example system call) before starting?<br /><br />In this moment wiibrew is not working so I will see the link soon!<br /><br />Thx again<br />Amedeo]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Thu, 02 Apr 2009 18:52:45 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13035#msg-13035</guid>
<title>Re: menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13035#msg-13035</link><description><![CDATA[ There are two great libraries for this:<br /><br />You can use mine: [<a href="http://www.wiibrew.org/wiki/The_HOMEbrew_Menu_Standard_Library" rel="nofollow">www.wiibrew.org</a>]<br /><br />Or MetaFights: [<a href="http://www.wiibrew.org/wiki/HomeMenu" rel="nofollow">www.wiibrew.org</a>]<br /><br />You&#039;ll find mine to be customizable (AKA skinnable) without looking at the source (See Wii Shooting Gallery) and MetaFights to look a little more professional (remember mine can be easily customized to look like MetaFights). I recommend you try out the demos of both before deciding which one to use.<br /><br />Also, while MetaFight uses no external libraries for his library, mine requires the use of either libwiisprite or GRRLIB. Both Home Menu libraries are open source still under active development.]]></description>
<dc:creator>Arikado</dc:creator>
<category>Coding</category><pubDate>Thu, 02 Apr 2009 13:28:12 +0200</pubDate></item>
<item>
<guid>http://forum.wiibrew.org/read.php?11,13029,13029#msg-13029</guid>
<title>menu library</title><link>http://forum.wiibrew.org/read.php?11,13029,13029#msg-13029</link><description><![CDATA[ Hello,<br /><br />I&#039;d like to build a menu thath look like the home brew channel only to start to build an application! Could you give me some infos and/or links could suppot my request?<br /><br />Thx]]></description>
<dc:creator>trottolo</dc:creator>
<category>Coding</category><pubDate>Thu, 02 Apr 2009 11:58:55 +0200</pubDate></item>
</channel>
</rss>