<?xml version="1.0"?>
<rss version="2.0">
	<channel>
		<title>Allegro gui -problem</title>
		<link>http://www.allegro.cc/forums/view/590046</link>
		<description>Allegro.cc Forum Thread</description>
		<webMaster>matthew@allegro.cc (Matthew Leverton)</webMaster>
		<lastBuildDate>Fri, 16 Feb 2007 18:24:34 +0000</lastBuildDate>
	</channel>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Hi <br />I want to use at the same time gui and page flipping.<br />But I have only one of them at the same time.<br />Is posible to use gui and page flipping together ?<br />How can I do that ?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Tue, 13 Feb 2007 18:38:45 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You can call this function with your currently active bitmap:<span class="source-code"><a href="http://www.allegro.cc/manual/gui_set_screen" target="_blank"><span class="a">gui_set_screen</span></a><span class="k2">(</span>page1<span class="k2">)</span><span class="k2">;</span></span>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Tue, 13 Feb 2007 20:10:23 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Nothing change.<br />This is my code:</p><p>#include &lt;iostream&gt;<br />#include &lt;allegro.h&gt;<br />#include &lt;winalleg.h&gt;</p><p>/***************************************/<br />BITMAP *buffer;<br />BITMAP *page1, *page2;<br />BITMAP *active_page;<br />/***************************************/<br />//SURFACE class<br />class SURFACE{<br />    public:<br />  BITMAP *surface;<br />  bool rysuj;</p><p>  void loadimage(char* name);<br />  void free();<br />  void draw(int x,int y,int w,int h,int a,int b);<br />  void TransparentDraw(int x,int y,int w,int h,int a,int b);<br />};<br />void SURFACE::loadimage(char* name)<br />{<br />    rysuj=true;<br />    surface = load_bitmap(name, NULL);<br />}<br />void SURFACE::free()<br />{<br />    destroy_bitmap(surface);<br />}<br />void SURFACE::draw(int x,int y,int w,int h,int a,int b)<br />{</p><p> if(rysuj==true){blit(surface, active_page, a, b, x,y, w, h);}</p><p>}<br />void SURFACE::TransparentDraw(int x,int y,int w,int h,int a,int b)<br />{<br /> if(rysuj==true){masked_blit(surface,active_page,a,b,x,y,w,h);}</p><p>}<br />//////////////////////////////////////////////<br />SURFACE image;</p><p>DIALOG the_dialog[] =<br />{<br />    { d_button_proc,     160,  40,  160,   20,   0,  0,  &#39;t&#39;,      0,       0,   0,    (void*)&quot;&amp;Toggle Me!&quot;,         (void*) NULL, (void*)NULL  }</p><p>};<br />int main(void)<br />{</p><p>   //init allegro<br />    allegro_init();</p><p>   install_timer();<br />   install_keyboard();<br />   install_mouse();<br />   install_sound(DIGI_AUTODETECT,MIDI_AUTODETECT,&quot;&quot;);</p><p>   set_color_depth(16);<br />   set_gfx_mode(GFX_AUTODETECT, 800,600,0,0);<br />   set_palette(desktop_palette);</p><p>   /* now create two video memory bitmaps for the page flipping */<br />   page1 = create_video_bitmap(SCREEN_W, SCREEN_H);<br />   page2 = create_video_bitmap(SCREEN_W, SCREEN_H);<br />   active_page = page2;<br />    clear_keybuf();</p><p>   ///////////////</p><p>   image.loadimage(&quot;a.bmp&quot;);</p><p>   gui_fg_color = makecol(0, 0, 0);<br />   gui_mg_color = makecol(128, 128, 128);<br />   gui_bg_color = makecol(200, 240, 200);<br />   set_dialog_color(the_dialog, gui_fg_color, gui_bg_color);<br />    the_dialog[0].bg = makecol(255, 255, 255);<br />position_dialog(the_dialog, 200, 2);</p><p>   while(true)<br />   {</p><p>  //  clear_bitmap(active_page);<br />/////////////////////</p><p>do_dialog(the_dialog, -1);<br />image.draw(0,0,100,100,0,0);<br />///////////////////<br />     show_video_bitmap(active_page);<br />     gui_set_screen(active_page);<br />      if (active_page == page1)<br />	 active_page = page2;<br />      else<br />	 active_page = page1;</p><p>     if(key[KEY_ESC])break;</p><p>  // }<br />  }</p><p>   image.free();<br />   destroy_bitmap(page1);<br />   destroy_bitmap(page2);<br />   return 0;<br />}<br />END_OF_MAIN()
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Tue, 13 Feb 2007 20:50:48 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You set the gui screen to the bitmap on the screen. Don&#39;t do that. Set it to the back page, the same one that you do all your drawing to.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Tue, 13 Feb 2007 20:53:52 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>And do_dialog is blocking. It won&#39;t return until the dialog is closed.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kitty Cat)</author>
		<pubDate>Tue, 13 Feb 2007 21:00:33 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I am not very good speak english ,and I don&#39;t understandt evrythink.<br />Can you improve my code ?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Tue, 13 Feb 2007 21:01:49 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I said to do this:</p><div class="source-code snippet"><div class="inner"><pre><a href="http://www.allegro.cc/manual/show_video_bitmap" target="_blank"><span class="a">show_video_bitmap</span></a><span class="k2">(</span>active_page<span class="k2">)</span><span class="k2">;</span>
<span class="k1">if</span> <span class="k2">(</span>active_page <span class="k3">=</span><span class="k3">=</span> page1<span class="k2">)</span>
    active_page <span class="k3">=</span> page2<span class="k2">;</span>
<span class="k1">else</span>
    active_page <span class="k3">=</span> page1<span class="k2">;</span>
<a href="http://www.allegro.cc/manual/gui_set_screen" target="_blank"><span class="a">gui_set_screen</span></a><span class="k2">(</span>active_page<span class="k2">)</span><span class="k2">;</span>
</pre></div></div><p>

KittyCat says to not use <tt>do_dialog</tt> and instead use these functions. You need to figure out how to use them yourself:</p><div class="source-code snippet"><div class="inner"><pre><a href="http://www.allegro.cc/manual/DIALOG_PLAYER" target="_blank"><span class="a">DIALOG_PLAYER</span></a> <span class="k3">*</span>player <span class="k3">=</span> <a href="http://www.allegro.cc/manual/init_dialog" target="_blank"><span class="a">init_dialog</span></a><span class="k2">(</span>the_dialog, <span class="k3">-</span><span class="n">1</span><span class="k2">)</span><span class="k2">;</span>

<span class="k1">if</span><span class="k2">(</span><span class="k3">!</span><a href="http://www.allegro.cc/manual/update_dialog" target="_blank"><span class="a">update_dialog</span></a><span class="k2">(</span>player<span class="k2">)</span><span class="k2">)</span>
<span class="k2">{</span>
    <span class="c">// Do something with the dialog data</span>
    <a href="http://www.allegro.cc/manual/shutdown_dialog" target="_blank"><span class="a">shutdown_dialog</span></a><span class="k2">(</span>player<span class="k2">)</span><span class="k2">;</span>
<span class="k2">}</span>
</pre></div></div><p>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Tue, 13 Feb 2007 21:19:17 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Now I have other problem ,just look at that <a href="http://emugames.cba.pl/file.7z">http://emugames.cba.pl/file.7z</a>
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Tue, 13 Feb 2007 21:43:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Err, no. I don&#39;t have 7z, so I won&#39;t even speculate as to whether you gave a description of the problem.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Tue, 13 Feb 2007 21:50:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Now the dialog is flashing.<br />Is this normal ?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Tue, 13 Feb 2007 21:54:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Yes, because the dialog only draws once (on whichever bitmap was active at the time) until something makes it draw again. If you&#39;re not using a double buffer, you can call:<br /><span class="source-code"><a href="http://www.allegro.cc/manual/dialog_message" target="_blank"><span class="a">dialog_message</span></a></span><br />with MSG_DRAW right before update_dialog.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kitty Cat)</author>
		<pubDate>Tue, 13 Feb 2007 22:55:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It is work !   <img src="http://www.allegro.cc/forums/smileys/cheesy.gif" alt=":D" /><br />You are the best.<br /><img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Tue, 13 Feb 2007 23:57:56 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You&#39;re welcome, but be warned! We expect to see a completed game from you, with screenshots, soon! <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 14 Feb 2007 00:10:24 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I have one more question .<br />When I set editbox height nothing change.<br />Is the height in the editbox const ?<br />Why ?</p><p>My code:<br />{d_edit_proc  ,100, 20,    400,    500,  10, 10,0,0,0,0,(void*)the_string,   (void*)NULL, (void*)NULL  }
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Wed, 14 Feb 2007 04:56:03 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>The height of the font is constant. You have to make a bigger font yourself <img src="http://www.allegro.cc/forums/smileys/undecided.gif" alt=":-/" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 14 Feb 2007 04:59:20 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Do you now any other GUI libary for allegro which can do that ?<br />I was using allegro gui ,because I need a EDITBOX for my game.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Wed, 14 Feb 2007 05:29:09 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Well if you find a program called &quot;ttf2pcx&quot; on the net and use that to make a font that Allegro can read, you can make fonts as big as you like.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 14 Feb 2007 09:39:43 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Do you now any other GUI libary for allegro which can do that ?
</p></div></div><p>
Plug! <img src="http://www.allegro.cc/forums/smileys/grin.gif" alt=";D" /></p><p>Third link in my sig. <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Wed, 14 Feb 2007 17:02:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I am using GCC compiler and I tried instal a MASkinG but I have some problems in build libary.<br />Is on the web a &quot;MASkinG.a&quot; for download ?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Wed, 14 Feb 2007 19:36:39 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You need to post the specific problems that you had.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 14 Feb 2007 19:51:05 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>In the console I see &quot;Makefiles configured.Now go to the src directory and run &#39;make&#39; and &#39;make install&#39; &quot;. But when I go to src directory there isn&#39;t any exe files which can be run .:P
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Wed, 14 Feb 2007 20:29:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><img src="http://www.allegro.cc/forums/smileys/tongue.gif" alt=":P" /></p><p>Stay in the command prompt and run &quot;make&quot; and then run &quot;make install&quot;. &quot;Run&quot; means &quot;type in and then press enter&quot; <img src="http://www.allegro.cc/forums/smileys/wink.gif" alt=";)" /></p><p>&quot;make&quot; is a program that comes with your compiler, it&#39;s used for automating the build process. Your IDE makes the Makefiles for you, so you don&#39;t have to.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 14 Feb 2007 20:35:29 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>when I run make.exe in the command line I see &quot;*** No targets. Stop.&quot;  .
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Wed, 14 Feb 2007 21:27:47 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You&#39;re running it from the correct directory? And just run &quot;make&quot;, not &quot;make.exe&quot;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kauhiz)</author>
		<pubDate>Wed, 14 Feb 2007 21:29:34 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I try run make ,and the result was the same.<br />The directory is correct.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Wed, 14 Feb 2007 21:34:33 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Copy the output from the command window to show us what you typed and what the results were. You can copy output by clicking on the command icon (top left icon) and saying Edit-&gt;Mark. Select and press enter to copy.</p><p>Run <tt>make</tt> and also run <tt>dir</tt> <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Wed, 14 Feb 2007 22:02:40 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Microsoft Windows XP [Wersja 5.1.2600]<br />(C) Copyright 1985-2001 Microsoft Corp.</p><p>D:\Documents and Settings\PMUZYKA&gt;cd D:\Documents and Settings\PMUZYKA\Pulpit\MA<br />SkinG-v0.80\MASkinG</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG-v0.80\MASkinG&gt;fixmingw.bat<br />Makefiles configured. Now go to the src directory<br />and run &#39;make&#39; and &#39;make install&#39;</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG-v0.80\MASkinG&gt;C:\COdeBlocks\bin<br />\make<br />C:\COdeBlocks\bin\make: *** No targets.  Stop.</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG-v0.80\MASkinG&gt;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Wed, 14 Feb 2007 22:49:25 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Instead of &quot;C:\COdeBlocks\bin\make&quot; just type &quot;make&quot;?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (Kauhiz)</author>
		<pubDate>Wed, 14 Feb 2007 23:46:04 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>It says to &quot;go to the src&quot; directory. <tt>cd src</tt>, then <tt>make</tt>.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Thu, 15 Feb 2007 02:25:42 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I do that but I see &quot;*** no targets. Stop.&quot;.<br />My log:<br />Microsoft Windows XP [Wersja 5.1.2600]<br />(C) Copyright 1985-2001 Microsoft Corp.</p><p>D:\Documents and Settings\PMUZYKA&gt;cd D:\Documents and Settings\PMUZYKA\Pulpit\MA<br />SkinG065\MASkinG</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG065\MASkinG&gt;fixmingw.bat<br />Makefiles configured. Now go to the src directory<br />and run &#39;make&#39; and &#39;make install&#39;</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG065\MASkinG&gt;C:</p><p>C:\&gt;cd C:\COdeBlocks\bin</p><p>C:\COdeBlocks\bin&gt;make<br />make: *** No targets.  Stop.</p><p>C:\COdeBlocks\bin&gt;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Thu, 15 Feb 2007 16:59:00 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p><b>GO TO THE FSCKING SRC DIRECTORY!</b></p><p>That means you should type <tt>cd src</tt> before running make and not <tt>cd C:\COdeBlocks\bin</tt>.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Thu, 15 Feb 2007 17:05:18 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>I do that and libary was create ,but it&#39;s empty .<br />My log:<br />Microsoft Windows XP [Wersja 5.1.2600]<br />(C) Copyright 1985-2001 Microsoft Corp.</p><p>D:\Documents and Settings\PMUZYKA&gt;cd D:\Documents and Settings\PMUZYKA\Pulpit\MA<br />SkinG</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG&gt;fixmingw.bat<br />Makefiles configured. Now go to the src directory<br />and run &#39;make&#39; and &#39;make install&#39;</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG&gt;cd src</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG\src&gt;C:\COdeBlocks\bin\make<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/DialogDo.o -c DialogDo.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/DialogDo.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Icon.o -c Icon.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Icon.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/CheckBox.o -c CheckBox.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/CheckBox.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/ClearScreen.o -c ClearScreen.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/ClearScreen.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/DialogObj.o -c DialogObj.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/DialogObj.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Dialog.o -c Dialog.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Dialog.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/DRS.o -c DRS.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/DRS.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/EditText.o -c EditText.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/EditText.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Button.o -c Button.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Button.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/HyperText.o -c HyperText.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/HyperText.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Bitmap.o -c Bitmap.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Bitmap.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Panel.o -c Panel.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Panel.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/PanelRaised.o -c PanelRaised.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/PanelRaised.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/PanelSunken.o -c PanelSunken.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/PanelSunken.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/PanelRidge.o -c PanelRidge.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/PanelRidge.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/PanelGroove.o -c PanelGroove.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/PanelGroove.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/BoxShadow.o -c BoxShadow.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/BoxShadow.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/RadioButton.o -c RadioButton.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/RadioButton.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Box.o -c Box.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Box.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Slider.o -c Slider.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Slider.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/HiddenList.o -c HiddenList.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/HiddenList.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Text.o -c Text.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Text.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/WinButton.o -c WinButton.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/WinButton.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Skin.o -c Skin.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Skin.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/List.o -c List.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/List.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Scroller.o -c Scroller.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Scroller.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/MASkinG.o -c MASkinG.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/MASkinG.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Window.o -c Window.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Window.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/WinBox.o -c WinBox.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/WinBox.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Keyboard.o -c Keyboard.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Keyboard.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Progress.o -c Progress.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Progress.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Log.o -c Log.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Log.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Console.o -c Console.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Console.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Alert.o -c Alert.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Alert.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Alert3.o -c Alert3.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Alert3.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/FileSelect.o -c FileSelect.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/FileSelect.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Settings.o -c Settings.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Settings.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Rect.o -c Rect.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Rect.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Timer.o -c Timer.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Timer.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Tab.o -c Tab.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Tab.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Font.o -c Font.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Font.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/MusicPlayer.o -c MusicPlayer.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/MusicPlayer.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/MidiPlayer.o -c MidiPlayer.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/MidiPlayer.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/WinIcon.o -c WinIcon.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/WinIcon.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/MessageBox.o -c MessageBox.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/MessageBox.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/ColorSel.o -c ColorSel.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/ColorSel.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Separator.o -c Separator.cpp<br />g++: installation problem, cannot exec `cc1plus&#39;: No such file or directory<br />C:\COdeBlocks\bin\make: [../obj/mingw/Separator.o] Error 1 (ignored)<br />ar src ../lib/mingw/libmasking.a ../obj/mingw/DialogDo.o ../obj/mingw/Icon.o ../<br />obj/mingw/CheckBox.o ../obj/mingw/ClearScreen.o ../obj/mingw/DialogObj.o ../obj/<br />mingw/Dialog.o ../obj/mingw/DRS.o ../obj/mingw/EditText.o ../obj/mingw/Button.o<br />../obj/mingw/HyperText.o ../obj/mingw/Bitmap.o ../obj/mingw/Panel.o ../obj/mingw<br />/PanelRaised.o ../obj/mingw/PanelSunken.o ../obj/mingw/PanelRidge.o ../obj/mingw<br /><i>PanelGroove.o ../obj/mingw/BoxShadow.o ../obj/mingw/RadioButton.o ../obj/mingw</i><br />Box.o ../obj/mingw/Slider.o ../obj/mingw/HiddenList.o ../obj/mingw/Text.o ../obj<br />/mingw/WinButton.o ../obj/mingw/Skin.o ../obj/mingw/List.o ../obj/mingw/Scroller<br />.o ../obj/mingw/MASkinG.o ../obj/mingw/Window.o ../obj/mingw/WinBox.o ../obj/min<br />gw/Keyboard.o ../obj/mingw/Progress.o ../obj/mingw/Log.o ../obj/mingw/Console.o<br />../obj/mingw/Alert.o ../obj/mingw/Alert3.o ../obj/mingw/FileSelect.o ../obj/ming<br />w/Settings.o ../obj/mingw/Rect.o ../obj/mingw/Timer.o ../obj/mingw/Tab.o ../obj/<br />mingw/Font.o ../obj/mingw/MusicPlayer.o ../obj/mingw/MidiPlayer.o ../obj/mingw/W<br />inIcon.o ../obj/mingw/MessageBox.o ../obj/mingw/ColorSel.o ../obj/mingw/Separato<br />r.o<br />ar: ../obj/mingw/DialogDo.o: No such file or directory<br />C:\COdeBlocks\bin\make: [../lib/mingw/libmasking.a] Error 1 (ignored)</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG\src&gt;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Thu, 15 Feb 2007 17:30:52 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Put C:\CodeBlocks\bin in your PATH. Like this:</p><div class="source-code snippet"><div class="inner"><pre>set PATH<span class="k3">=</span>%PATH%<span class="k2">;</span>C:\CodeBlocks\bin
</pre></div></div><p>

Then repeat make.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Thu, 15 Feb 2007 17:33:13 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Nothing change the libary is empty:<br />My log:<br />Font.cpp: At global scope:<br />Font.cpp:404: error: expected init-declarator before &#39;*&#39; token<br />Font.cpp:404: error: expected `,&#39; or `;&#39; before &#39;*&#39; token<br />Font.cpp:470: error: expected init-declarator before &#39;*&#39; token<br />Font.cpp:470: error: expected `,&#39; or `;&#39; before &#39;*&#39; token<br />Font.cpp:509: error: expected init-declarator before &#39;*&#39; token<br />Font.cpp:509: error: expected `,&#39; or `;&#39; before &#39;*&#39; token<br />Font.cpp: In function `void datedit_find_character(BITMAP*, int*, int*, int*, in<br />t*)&#39;:<br />Font.cpp:561: error: `bitmap_color_depth&#39; undeclared (first use this function)<br />Font.cpp:566: error: `makecol_depth&#39; undeclared (first use this function)<br />Font.cpp:571: error: `getpixel&#39; undeclared (first use this function)<br />Font.cpp:577: error: invalid use of undefined type `struct BITMAP&#39;<br />C:/CodeBlocks/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/internal/<br />aintern.h:766: error: forward declaration of `struct BITMAP&#39;<br />Font.cpp:580: error: invalid use of undefined type `struct BITMAP&#39;<br />C:/CodeBlocks/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/internal/<br />aintern.h:766: error: forward declaration of `struct BITMAP&#39;<br />Font.cpp:592: error: invalid use of undefined type `struct BITMAP&#39;<br />C:/CodeBlocks/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/internal/<br />aintern.h:766: error: forward declaration of `struct BITMAP&#39;<br />Font.cpp:599: error: invalid use of undefined type `struct BITMAP&#39;<br />C:/CodeBlocks/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/internal/<br />aintern.h:766: error: forward declaration of `struct BITMAP&#39;<br />Font.cpp: At global scope:<br />Font.cpp:608: error: `FONT_GLYPH&#39; was not declared in this scope<br />Font.cpp:608: error: `gl&#39; was not declared in this scope<br />Font.cpp:608: error: expected primary-expression before &quot;int&quot;<br />Font.cpp:609: error: initializer expression list treated as compound expression<br />Font.cpp:609: error: expected `,&#39; or `;&#39; before &#39;{&#39; token<br />Font.cpp: In function `int import_bitmap_font_color(BITMAP**, int)&#39;:<br />Font.cpp:656: error: `create_bitmap_ex&#39; undeclared (first use this function)<br />Font.cpp:658: error: `clear_to_color&#39; undeclared (first use this function)<br />Font.cpp:662: error: `blit&#39; undeclared (first use this function)<br />Font.cpp: In function `int bitmap_font_ismono(BITMAP*)&#39;:<br />Font.cpp:679: error: invalid use of undefined type `struct BITMAP&#39;<br />C:/CodeBlocks/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/internal/<br />aintern.h:766: error: forward declaration of `struct BITMAP&#39;<br />Font.cpp:680: error: invalid use of undefined type `struct BITMAP&#39;<br />C:/CodeBlocks/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/internal/<br />aintern.h:766: error: forward declaration of `struct BITMAP&#39;<br />Font.cpp:681: error: `getpixel&#39; undeclared (first use this function)<br />Font.cpp: In function `FONT_COLOR_DATA* upgrade_to_color_data(FONT_MONO_DATA*)&#39;:</p><p>Font.cpp:698: error: `_al_malloc&#39; undeclared (first use this function)<br />Font.cpp:704: error: &#39;struct FONT_COLOR_DATA&#39; has no member named &#39;bitmaps&#39;<br />Font.cpp:707: error: `text_mode&#39; undeclared (first use this function)<br />Font.cpp:710: error: `FONT_GLYPH&#39; undeclared (first use this function)<br />Font.cpp:710: error: `g&#39; undeclared (first use this function)<br />Font.cpp:710: error: &#39;struct FONT_MONO_DATA&#39; has no member named &#39;glyphs&#39;<br />Font.cpp:711: error: `create_bitmap_ex&#39; undeclared (first use this function)<br />Font.cpp:712: error: `clear_to_color&#39; undeclared (first use this function)<br />Font.cpp:714: error: invalid use of undefined type `struct BITMAP&#39;<br />C:/CodeBlocks/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/internal/<br />aintern.h:766: error: forward declaration of `struct BITMAP&#39;<br />Font.cpp:720: error: `free&#39; undeclared (first use this function)<br />Font.cpp:723: error: &#39;struct FONT_MONO_DATA&#39; has no member named &#39;glyphs&#39;<br />Font.cpp: At global scope:<br />Font.cpp:731: error: variable or field `upgrade_to_color&#39; declared void<br />Font.cpp:731: error: `FONT&#39; was not declared in this scope<br />Font.cpp:731: error: `f&#39; was not declared in this scope<br />Font.cpp:732: error: expected `,&#39; or `;&#39; before &#39;{&#39; token<br />Font.cpp:774: error: expected init-declarator before &#39;*&#39; token<br />Font.cpp:774: error: expected `,&#39; or `;&#39; before &#39;*&#39; token<br />Font.cpp:862: error: expected init-declarator before &#39;*&#39; token<br />Font.cpp:862: error: expected `,&#39; or `;&#39; before &#39;*&#39; token<br />Font.cpp: In member function `MASFont* MASFont::Load(const char*)&#39;:<br />Font.cpp:952: error: `get_extension&#39; undeclared (first use this function)<br />Font.cpp:952: error: `uconvert_ascii&#39; undeclared (first use this function)<br />Font.cpp:952: error: `ustricmp&#39; undeclared (first use this function)<br />Font.cpp:958: error: `af&#39; undeclared (first use this function)<br />Font.cpp:958: error: `TRUE&#39; undeclared (first use this function)<br />Font.cpp:958: error: `import_bitmap_font&#39; undeclared (first use this function)<br />Font.cpp:963: error: `import_scripted_font&#39; undeclared (first use this function)</p><p>Font.cpp:968: error: `import_it_font&#39; undeclared (first use this function)<br />Font.cpp:973: error: `PACKFILE&#39; undeclared (first use this function)<br />Font.cpp:973: error: `f&#39; undeclared (first use this function)<br />Font.cpp:973: error: `F_READ&#39; undeclared (first use this function)<br />Font.cpp:973: error: `pack_fopen&#39; undeclared (first use this function)<br />Font.cpp:975: error: `pack_igetl&#39; undeclared (first use this function)<br />Font.cpp:976: error: `pack_fclose&#39; undeclared (first use this function)<br />Font.cpp:978: error: `import_grx_font&#39; undeclared (first use this function)<br />Font.cpp:982: error: `import_bios_font&#39; undeclared (first use this function)<br />Font.cpp:992: error: `ff&#39; undeclared (first use this function)<br />Font.cpp:992: error: `uconvert_toascii&#39; undeclared (first use this function)<br />Font.cpp:992: error: `alfont_load_font&#39; undeclared (first use this function)<br />Font.cpp:999: error: `font&#39; undeclared (first use this function)<br />C:\COdeBlocks\bin\make: [../obj/mingw/Font.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/MusicPlayer.o -c MusicPlayer.cpp<br />In file included from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/MusicPlayer.h:18,<br />                 from MusicPlayer.cpp:15:<br />../include/MASkinG/global.h:18:20: alfont.h: No such file or directory<br />In file included from ../include/MASkinG/global.h:20,<br />                 from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/MusicPlayer.h:18,<br />                 from MusicPlayer.cpp:15:<br />../include/MASkinG/Font.h:27: error: ISO C++ forbids declaration of `ALFONT_FONT<br />&#39; with no type<br />../include/MASkinG/Font.h:27: error: expected `;&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:36: error: expected `)&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:65: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Font.h:65: error: ISO C++ forbids declaration of `f&#39; with no<br />type<br />In file included from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/MusicPlayer.h:18,<br />                 from MusicPlayer.cpp:15:<br />../include/MASkinG/Skin.h:184: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Skin.h:184: error: ISO C++ forbids declaration of `f&#39; with no<br /> type<br />C:\COdeBlocks\bin\make: [../obj/mingw/MusicPlayer.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/MidiPlayer.o -c MidiPlayer.cpp<br />In file included from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/MusicPlayer.h:18,<br />                 from ../include/MASkinG/MidiPlayer.h:19,<br />                 from MidiPlayer.cpp:15:<br />../include/MASkinG/global.h:18:20: alfont.h: No such file or directory<br />In file included from ../include/MASkinG/global.h:20,<br />                 from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/MusicPlayer.h:18,<br />                 from ../include/MASkinG/MidiPlayer.h:19,<br />                 from MidiPlayer.cpp:15:<br />../include/MASkinG/Font.h:27: error: ISO C++ forbids declaration of `ALFONT_FONT<br />&#39; with no type<br />../include/MASkinG/Font.h:27: error: expected `;&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:36: error: expected `)&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:65: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Font.h:65: error: ISO C++ forbids declaration of `f&#39; with no<br />type<br />In file included from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/MusicPlayer.h:18,<br />                 from ../include/MASkinG/MidiPlayer.h:19,<br />                 from MidiPlayer.cpp:15:<br />../include/MASkinG/Skin.h:184: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Skin.h:184: error: ISO C++ forbids declaration of `f&#39; with no<br /> type<br />C:\COdeBlocks\bin\make: [../obj/mingw/MidiPlayer.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/WinIcon.o -c WinIcon.cpp<br />In file included from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Text.h:18,<br />                 from ../include/MASkinG/Button.h:18,<br />                 from ../include/MASkinG/WinButton.h:18,<br />                 from ../include/MASkinG/WinIcon.h:18,<br />                 from WinIcon.cpp:15:<br />../include/MASkinG/global.h:18:20: alfont.h: No such file or directory<br />In file included from ../include/MASkinG/global.h:20,<br />                 from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Text.h:18,<br />                 from ../include/MASkinG/Button.h:18,<br />                 from ../include/MASkinG/WinButton.h:18,<br />                 from ../include/MASkinG/WinIcon.h:18,<br />                 from WinIcon.cpp:15:<br />../include/MASkinG/Font.h:27: error: ISO C++ forbids declaration of `ALFONT_FONT<br />&#39; with no type<br />../include/MASkinG/Font.h:27: error: expected `;&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:36: error: expected `)&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:65: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Font.h:65: error: ISO C++ forbids declaration of `f&#39; with no<br />type<br />In file included from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Text.h:18,<br />                 from ../include/MASkinG/Button.h:18,<br />                 from ../include/MASkinG/WinButton.h:18,<br />                 from ../include/MASkinG/WinIcon.h:18,<br />                 from WinIcon.cpp:15:<br />../include/MASkinG/Skin.h:184: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Skin.h:184: error: ISO C++ forbids declaration of `f&#39; with no<br /> type<br />C:\COdeBlocks\bin\make: [../obj/mingw/WinIcon.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/MessageBox.o -c MessageBox.cpp<br />In file included from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Window.h:18,<br />                 from ../include/MASkinG/MessageBox.h:18,<br />                 from MessageBox.cpp:15:<br />../include/MASkinG/global.h:18:20: alfont.h: No such file or directory<br />In file included from ../include/MASkinG/global.h:20,<br />                 from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Window.h:18,<br />                 from ../include/MASkinG/MessageBox.h:18,<br />                 from MessageBox.cpp:15:<br />../include/MASkinG/Font.h:27: error: ISO C++ forbids declaration of `ALFONT_FONT<br />&#39; with no type<br />../include/MASkinG/Font.h:27: error: expected `;&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:36: error: expected `)&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:65: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Font.h:65: error: ISO C++ forbids declaration of `f&#39; with no<br />type<br />In file included from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Window.h:18,<br />                 from ../include/MASkinG/MessageBox.h:18,<br />                 from MessageBox.cpp:15:<br />../include/MASkinG/Skin.h:184: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Skin.h:184: error: ISO C++ forbids declaration of `f&#39; with no<br /> type<br />C:\COdeBlocks\bin\make: [../obj/mingw/MessageBox.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/ColorSel.o -c ColorSel.cpp<br />In file included from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Window.h:18,<br />                 from ../include/MASkinG/ColorSel.h:18,<br />                 from ColorSel.cpp:17:<br />../include/MASkinG/global.h:18:20: alfont.h: No such file or directory<br />In file included from ../include/MASkinG/global.h:20,<br />                 from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Window.h:18,<br />                 from ../include/MASkinG/ColorSel.h:18,<br />                 from ColorSel.cpp:17:<br />../include/MASkinG/Font.h:27: error: ISO C++ forbids declaration of `ALFONT_FONT<br />&#39; with no type<br />../include/MASkinG/Font.h:27: error: expected `;&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:36: error: expected `)&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:65: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Font.h:65: error: ISO C++ forbids declaration of `f&#39; with no<br />type<br />In file included from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Window.h:18,<br />                 from ../include/MASkinG/ColorSel.h:18,<br />                 from ColorSel.cpp:17:<br />../include/MASkinG/Skin.h:184: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Skin.h:184: error: ISO C++ forbids declaration of `f&#39; with no<br /> type<br />C:\COdeBlocks\bin\make: [../obj/mingw/ColorSel.o] Error 1 (ignored)<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Separator.o -c Separator.cpp<br />In file included from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Separator.h:18,<br />                 from Separator.cpp:15:<br />../include/MASkinG/global.h:18:20: alfont.h: No such file or directory<br />In file included from ../include/MASkinG/global.h:20,<br />                 from ../include/MASkinG/Skin.h:19,<br />                 from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Separator.h:18,<br />                 from Separator.cpp:15:<br />../include/MASkinG/Font.h:27: error: ISO C++ forbids declaration of `ALFONT_FONT<br />&#39; with no type<br />../include/MASkinG/Font.h:27: error: expected `;&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:36: error: expected `)&#39; before &#39;*&#39; token<br />../include/MASkinG/Font.h:65: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Font.h:65: error: ISO C++ forbids declaration of `f&#39; with no<br />type<br />In file included from ../include/MASkinG/DialogObj.h:18,<br />                 from ../include/MASkinG/Dialog.h:18,<br />                 from ../include/MASkinG/Separator.h:18,<br />                 from Separator.cpp:15:<br />../include/MASkinG/Skin.h:184: error: `ALFONT_FONT&#39; has not been declared<br />../include/MASkinG/Skin.h:184: error: ISO C++ forbids declaration of `f&#39; with no<br /> type<br />C:\COdeBlocks\bin\make: [../obj/mingw/Separator.o] Error 1 (ignored)<br />ar src ../lib/mingw/libmasking.a ../obj/mingw/DialogDo.o ../obj/mingw/Icon.o ../<br />obj/mingw/CheckBox.o ../obj/mingw/ClearScreen.o ../obj/mingw/DialogObj.o ../obj/<br />mingw/Dialog.o ../obj/mingw/DRS.o ../obj/mingw/EditText.o ../obj/mingw/Button.o<br />../obj/mingw/HyperText.o ../obj/mingw/Bitmap.o ../obj/mingw/Panel.o ../obj/mingw<br />/PanelRaised.o ../obj/mingw/PanelSunken.o ../obj/mingw/PanelRidge.o ../obj/mingw<br /><i>PanelGroove.o ../obj/mingw/BoxShadow.o ../obj/mingw/RadioButton.o ../obj/mingw</i><br />Box.o ../obj/mingw/Slider.o ../obj/mingw/HiddenList.o ../obj/mingw/Text.o ../obj<br />/mingw/WinButton.o ../obj/mingw/Skin.o ../obj/mingw/List.o ../obj/mingw/Scroller<br />.o ../obj/mingw/MASkinG.o ../obj/mingw/Window.o ../obj/mingw/WinBox.o ../obj/min<br />gw/Keyboard.o ../obj/mingw/Progress.o ../obj/mingw/Log.o ../obj/mingw/Console.o<br />../obj/mingw/Alert.o ../obj/mingw/Alert3.o ../obj/mingw/FileSelect.o ../obj/ming<br />w/Settings.o ../obj/mingw/Rect.o ../obj/mingw/Timer.o ../obj/mingw/Tab.o ../obj/<br />mingw/Font.o ../obj/mingw/MusicPlayer.o ../obj/mingw/MidiPlayer.o ../obj/mingw/W<br />inIcon.o ../obj/mingw/MessageBox.o ../obj/mingw/ColorSel.o ../obj/mingw/Separato<br />r.o<br />ar: ../obj/mingw/DialogDo.o: No such file or directory<br />C:\COdeBlocks\bin\make: [../lib/mingw/libmasking.a] Error 1 (ignored)</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG\src&gt;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Thu, 15 Feb 2007 17:38:15 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You must first install AllegroFont. Just like the instructions said. <img src="http://www.allegro.cc/forums/smileys/rolleyes.gif" alt="::)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Thu, 15 Feb 2007 17:40:14 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Now I have other problem<br />My log:<br />Microsoft Windows XP [Wersja 5.1.2600]<br />(C) Copyright 1985-2001 Microsoft Corp.</p><p>D:\Documents and Settings\PMUZYKA&gt;cd D:\Documents and Settings\PMUZYKA\Pulpit\Al<br />Font</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\AlFont&gt;fixdos.bat<br />Converting files to DOS format...<br />Nazwa &#39;utod&#39; nie jest rozpoznawana jako polecenie wewnętrzne lub zewnętrzne,<br />program wykonywalny lub plik wsadowy.<br />D:\Documents and Settings\PMUZYKA\Pulpit\AlFont&gt;cd src</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\AlFont\src&gt;cd D:\Documents and Settings<br />\PMUZYKA\Pulpit\AlFont</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\AlFont&gt;set PATH=%PATH%;C:\CodeBlocks\bi<br />n</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\AlFont&gt;C:\COdeBlocks\bin\make<br />gcc -c -Wall -O2 -march=pentium -fomit-frame-pointer -finline-functions -ffast-m<br />ath -Ifreetype/include -Iinclude src/alfont.c -o obj/djgpp/static/alfont.o<br />In file included from src/alfont.c:17:<br />include/alfont.h:464:3: warning: no newline at end of file<br />src/alfont.c: In function `alfont_textout_aa_ex&#39;:<br />src/alfont.c:876: error: invalid lvalue in unary `&amp;&#39;<br />src/alfont.c:876: error: invalid lvalue in unary `&amp;&#39;<br />src/alfont.c: In function `alfont_textout_ex&#39;:<br />src/alfont.c:1962: error: invalid lvalue in unary `&amp;&#39;<br />src/alfont.c:1962: error: invalid lvalue in unary `&amp;&#39;<br />src/alfont.c: In function `alfont_text_length&#39;:<br />src/alfont.c:2740: error: invalid lvalue in unary `&amp;&#39;<br />src/alfont.c:2740: error: invalid lvalue in unary `&amp;&#39;<br />src/alfont.c: In function `alfont_ugetc&#39;:<br />src/alfont.c:3052: warning: unused variable `lpszW_pointer&#39;<br />C:\COdeBlocks\bin\make: *** [alfont.o] Error 1</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\AlFont&gt;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Thu, 15 Feb 2007 17:52:36 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Miran... why on Earth does your makefile ignore every error it gets?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Thu, 15 Feb 2007 18:01:20 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>My game need gui  .Is CGUI easy for install ?
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Thu, 15 Feb 2007 21:09:34 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>You guys rock.  I&#39;m bookmarking this thread to reference in the next &#39;no one helps newbs&#39; thread.</p><p><img src="http://www.allegro.cc/forums/smileys/cool.gif" alt="8-)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (nonnus29)</author>
		<pubDate>Thu, 15 Feb 2007 22:17:20 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
Miran... why on Earth does your makefile ignore every error it gets?
</p></div></div><p>
I don&#39;t know. I wrote it (actually copy-pasted it from somewhere else) around about a long time ago when I knew nothing about makefiles. Now I&#39;m older and wiser so I could probably fix it, but the problem now is that I&#39;m lazy.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
My game need gui .Is CGUI easy for install ?
</p></div></div><p>
Probably as easy as most other libs and easier than some.</p><p>About AllegroFont, you need v1.92, not 2.xx.
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Fri, 16 Feb 2007 12:10:38 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Microsoft Windows XP [Wersja 5.1.2600]<br />(C) Copyright 1985-2001 Microsoft Corp.</p><p>D:\Documents and Settings\PMUZYKA&gt;cd D:\Documents and Settings\PMUZYKA\Pulpit\MA<br />SkinG065\MASkinG</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG065\MASkinG&gt;fixmingw.bat<br />Makefiles configured. Now go to the src directory<br />and run &#39;make&#39; and &#39;make install&#39;</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG065\MASkinG&gt;cd src</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG065\MASkinG\src&gt;set PATH=%PATH%;<br />C:\CodeBlocks\bin</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG065\MASkinG\src&gt;C:\COdeBlocks\bi<br />n\make<br />g++ -O2 -fomit-frame-pointer -ffast-math -fexpensive-optimizations -fpeephole -s<br /> -o ../obj/mingw/Font.o -c Font.cpp<br />Font.cpp: In member function `void MASFont::Textout(BITMAP*, const char*, int, i<br />nt, int, int)&#39;:<br />Font.cpp:96: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/.<br />./lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:96: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/.<br />./lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:97: warning: `textout&#39; is deprecated (declared at C:/CodeBlocks/bin/../<br />lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:157)<br />Font.cpp:97: warning: `textout&#39; is deprecated (declared at C:/CodeBlocks/bin/../<br />lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:157)<br />Font.cpp: In member function `void MASFont::AATextout(BITMAP*, const char*, int,<br /> int, int, int)&#39;:<br />Font.cpp:107: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:107: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:108: warning: `textout&#39; is deprecated (declared at C:/CodeBlocks/bin/..<br />/lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:157)<br />Font.cpp:108: warning: `textout&#39; is deprecated (declared at C:/CodeBlocks/bin/..<br />/lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:157)<br />Font.cpp: In member function `void MASFont::TextoutCentre(BITMAP*, const char*,<br />int, int, int, int)&#39;:<br />Font.cpp:123: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:123: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:124: warning: `textout_centre&#39; is deprecated (declared at C:/CodeBlocks<br />/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:162)<br />Font.cpp:124: warning: `textout_centre&#39; is deprecated (declared at C:/CodeBlocks<br />/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:162)<br />Font.cpp: In member function `void MASFont::AATextoutCentre(BITMAP*, const char*<br />, int, int, int, int)&#39;:<br />Font.cpp:134: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:134: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:135: warning: `textout_centre&#39; is deprecated (declared at C:/CodeBlocks<br />/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:162)<br />Font.cpp:135: warning: `textout_centre&#39; is deprecated (declared at C:/CodeBlocks<br />/bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:162)<br />Font.cpp: In member function `void MASFont::TextoutRight(BITMAP*, const char*, i<br />nt, int, int, int)&#39;:<br />Font.cpp:150: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:150: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:151: warning: `textout_right&#39; is deprecated (declared at C:/CodeBlocks/<br />bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:167)<br />Font.cpp:151: warning: `textout_right&#39; is deprecated (declared at C:/CodeBlocks/<br />bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:167)<br />Font.cpp: In member function `void MASFont::AATextoutRight(BITMAP*, const char*,<br /> int, int, int, int)&#39;:<br />Font.cpp:161: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:161: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:162: warning: `textout_right&#39; is deprecated (declared at C:/CodeBlocks/<br />bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:167)<br />Font.cpp:162: warning: `textout_right&#39; is deprecated (declared at C:/CodeBlocks/<br />bin/../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:167)<br />Font.cpp: In function `FONT* import_bios_font(const char*)&#39;:<br />Font.cpp:485: error: &#39;struct PACKFILE&#39; has no member named &#39;todo&#39;<br />Font.cpp: In function `FONT_COLOR_DATA* upgrade_to_color_data(FONT_MONO_DATA*)&#39;:</p><p>Font.cpp:707: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />Font.cpp:707: warning: `text_mode&#39; is deprecated (declared at C:/CodeBlocks/bin/<br />../lib/gcc/mingw32/3.4.4/../../../../include/allegro/alcompat.h:155)<br />C:\COdeBlocks\bin\make: [../obj/mingw/Font.o] Error 1 (ignored)<br />ar src ../lib/mingw/libmasking.a ../obj/mingw/DialogDo.o ../obj/mingw/Icon.o ../<br />obj/mingw/CheckBox.o ../obj/mingw/ClearScreen.o ../obj/mingw/DialogObj.o ../obj/<br />mingw/Dialog.o ../obj/mingw/DRS.o ../obj/mingw/EditText.o ../obj/mingw/Button.o<br />../obj/mingw/HyperText.o ../obj/mingw/Bitmap.o ../obj/mingw/Panel.o ../obj/mingw<br />/PanelRaised.o ../obj/mingw/PanelSunken.o ../obj/mingw/PanelRidge.o ../obj/mingw<br /><i>PanelGroove.o ../obj/mingw/BoxShadow.o ../obj/mingw/RadioButton.o ../obj/mingw</i><br />Box.o ../obj/mingw/Slider.o ../obj/mingw/HiddenList.o ../obj/mingw/Text.o ../obj<br />/mingw/WinButton.o ../obj/mingw/Skin.o ../obj/mingw/List.o ../obj/mingw/Scroller<br />.o ../obj/mingw/MASkinG.o ../obj/mingw/Window.o ../obj/mingw/WinBox.o ../obj/min<br />gw/Keyboard.o ../obj/mingw/Progress.o ../obj/mingw/Log.o ../obj/mingw/Console.o<br />../obj/mingw/Alert.o ../obj/mingw/Alert3.o ../obj/mingw/FileSelect.o ../obj/ming<br />w/Settings.o ../obj/mingw/Rect.o ../obj/mingw/Timer.o ../obj/mingw/Tab.o ../obj/<br />mingw/Font.o ../obj/mingw/MusicPlayer.o ../obj/mingw/MidiPlayer.o ../obj/mingw/W<br />inIcon.o ../obj/mingw/MessageBox.o ../obj/mingw/ColorSel.o ../obj/mingw/Separato<br />r.o<br />ar: ../obj/mingw/Font.o: No such file or directory<br />C:\COdeBlocks\bin\make: [../lib/mingw/libmasking.a] Error 1 (ignored)</p><p>D:\Documents and Settings\PMUZYKA\Pulpit\MASkinG065\MASkinG\src&gt;
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (pawel559 pawel559)</author>
		<pubDate>Fri, 16 Feb 2007 17:37:27 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>edit: nevermind
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Fri, 16 Feb 2007 17:58:29 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><p>Please start using code tags to paste long segments. Click the Help link in the Reply box if you don&#39;t know how.</p><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
</p><pre>Font.cpp:485: error: &#39;struct PACKFILE&#39; has no member named &#39;todo&#39;</pre><p>
</p></div></div><p>That&#39;s the only error you&#39;ve gotten. Very strange. Miran? <img src="http://www.allegro.cc/forums/smileys/smiley.gif" alt=":)" />
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (CGamesPlay)</author>
		<pubDate>Fri, 16 Feb 2007 18:13:22 +0000</pubDate>
	</item>
	<item>
		<description><![CDATA[<div class="mockup v2"><div class="quote_container"><div class="title">Quote:</div><div class="quote"><p>
That&#39;s the only error you&#39;ve gotten. Very strange. Miran?
</p></div></div><p>
That particular piece of code was copied&amp;pasted from the Grabber font loader plugin. I didn&#39;t write it. I didn&#39;t even read it.</p><p>As for the warnings, there are preprocessor checks in there to make sure appropriate code is used on different versions of Allegro. It looks like the 4.0 code is being compiled for 4.2. Which means there&#39;s something wrong with the OP&#39;s copy of Allegro. Or something...
</p></div>]]>
		</description>
		<author>no-reply@allegro.cc (miran)</author>
		<pubDate>Fri, 16 Feb 2007 18:24:34 +0000</pubDate>
	</item>
</rss>
