<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[probleme mit _beginthreadex]]></title><description><![CDATA[<p>hab da mal wieder ein problem <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /> ...</p>
<p>ich hab einen thread der in einer klasse steckt (hoffe das ist so richtig)<br />
und wenn ich kompiliere und ausführe klappt alles wunderbar.<br />
so nun hab ich aber wegen einem anderen problem den debugger (dev-c++/gdb) angeschmissen. komischerweise stürzt das programm hierbei jetzt bei _beginthreadex immer mit einer &quot;Segmentation Fault&quot; ab.<br />
hier der code:</p>
<pre><code class="language-cpp">/* Thread starten. (User) */
std::string ThreadKlasse::StarteThreadKlasse() {
    laufe=true;

    // hier hängt er sich weg
    h=(HANDLE)_beginthreadex(0,0,StarteThread,this,0,0);
    return &quot;gestartet!&quot;;
}

unsigned CALLBACK ThreadKlasse::StarteThread(PVOID threadParam) {
    ThreadKlasse * instance = (ThreadKlasse *) threadParam;
    return instance-&gt;Run();
}
</code></pre>
<p>woran liegt das? warum gehts normal aber mit debugger nicht?? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>thx schon mal!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/101048/probleme-mit-_beginthreadex</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Apr 2026 13:45:11 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/101048.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 12 Feb 2005 19:35:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sat, 12 Feb 2005 19:35:10 GMT]]></title><description><![CDATA[<p>hab da mal wieder ein problem <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f644.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_rolling_eyes"
      title=":rolling_eyes:"
      alt="🙄"
    /> ...</p>
<p>ich hab einen thread der in einer klasse steckt (hoffe das ist so richtig)<br />
und wenn ich kompiliere und ausführe klappt alles wunderbar.<br />
so nun hab ich aber wegen einem anderen problem den debugger (dev-c++/gdb) angeschmissen. komischerweise stürzt das programm hierbei jetzt bei _beginthreadex immer mit einer &quot;Segmentation Fault&quot; ab.<br />
hier der code:</p>
<pre><code class="language-cpp">/* Thread starten. (User) */
std::string ThreadKlasse::StarteThreadKlasse() {
    laufe=true;

    // hier hängt er sich weg
    h=(HANDLE)_beginthreadex(0,0,StarteThread,this,0,0);
    return &quot;gestartet!&quot;;
}

unsigned CALLBACK ThreadKlasse::StarteThread(PVOID threadParam) {
    ThreadKlasse * instance = (ThreadKlasse *) threadParam;
    return instance-&gt;Run();
}
</code></pre>
<p>woran liegt das? warum gehts normal aber mit debugger nicht?? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>thx schon mal!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721755</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721755</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sat, 12 Feb 2005 19:35:10 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sat, 12 Feb 2005 22:14:21 GMT]]></title><description><![CDATA[<p>Ist StarteThread ein static member der ThreadKlasse?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721824</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721824</guid><dc:creator><![CDATA[Power Off]]></dc:creator><pubDate>Sat, 12 Feb 2005 22:14:21 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sat, 12 Feb 2005 22:30:39 GMT]]></title><description><![CDATA[<p>äh ja sorry</p>
<pre><code class="language-cpp">public:
        std::string ThreadKlasse::StarteThreadKlasse();

    protected:
        static unsigned CALLBACK StarteThread(PVOID threadParam);
</code></pre>
<p>so.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721825</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721825</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sat, 12 Feb 2005 22:30:39 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 02:44:29 GMT]]></title><description><![CDATA[<p>wenn es static ist, mußt du ThreadKlasse:: weglassen, sonst wird es der Klasse zugeordnet mit voranstehenden this in der Parameterübergabe.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721895</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721895</guid><dc:creator><![CDATA[MiC++ha]]></dc:creator><pubDate>Sun, 13 Feb 2005 02:44:29 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 02:46:13 GMT]]></title><description><![CDATA[<p>Power Off &amp;&amp; MiC++ha: Wenn's das wäre würde es Compilerfehler geben.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721896</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721896</guid><dc:creator><![CDATA[compiler23]]></dc:creator><pubDate>Sun, 13 Feb 2005 02:46:13 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 03:15:50 GMT]]></title><description><![CDATA[<p>compiler23 schrieb:</p>
<blockquote>
<p>Power Off &amp;&amp; MiC++ha: Wenn's das wäre würde es Compilerfehler geben.</p>
</blockquote>
<p>Ja und nein, denn keiner weiß bis jetzt wie er es wirklich hat, ist es static oder nicht, &quot;ähh&quot;, genau. Der Debugger könnte aber event. mit der einbettung in std::string nicht klar kommen.</p>
<p>hier bedürft es weitere oder umfangreichere informationen!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721899</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721899</guid><dc:creator><![CDATA[MiC++ha]]></dc:creator><pubDate>Sun, 13 Feb 2005 03:15:50 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 03:17:30 GMT]]></title><description><![CDATA[<p>Wie gesagt, wenn er es nicht static hätte würde es nicht kompilieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721900</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721900</guid><dc:creator><![CDATA[compiler23]]></dc:creator><pubDate>Sun, 13 Feb 2005 03:17:30 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 03:30:32 GMT]]></title><description><![CDATA[<p>compiler23 schrieb:</p>
<blockquote>
<p>Wie gesagt, wenn er es nicht static hätte würde es nicht kompilieren.</p>
</blockquote>
<p>Es würde auch nicht kompilieren wenn er es static hat, aber BlaBlaKlasse::... davor stehen hat, den bei der static Funktion wird ein Parameter übergeben, BlaBlaKlasse::funktion(xyz) erwartet 2 (this und xyz).</p>
<p>Guck nochmal hin, in seinen und unseren Aussagen, dann steigst du dahinter worauf ich hinaus will.</p>
<p>Ahnung über die std::... Funktionen sind von Vorteil</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721901</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721901</guid><dc:creator><![CDATA[MiC++ha]]></dc:creator><pubDate>Sun, 13 Feb 2005 03:30:32 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 03:47:43 GMT]]></title><description><![CDATA[<blockquote>
<p>Es würde auch nicht kompilieren wenn er es static hat, aber BlaBlaKlasse::... davor stehen hat</p>
</blockquote>
<p>Quatsch. Das ist egal ob er es davor schreibt oder nicht. static bleibt static.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721904</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721904</guid><dc:creator><![CDATA[compiler23]]></dc:creator><pubDate>Sun, 13 Feb 2005 03:47:43 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 07:58:20 GMT]]></title><description><![CDATA[<p>mh. also das ganze sieht so aus:</p>
<pre><code class="language-cpp">//header
class ThreadKlasse {
    public:
        HANDLE hThread;
        bool laufe;

        std::string StarteThreadKlasse();

        virtual unsigned Run();

    protected:
        static unsigned CALLBACK StarteThread(PVOID threadParam);
};

//source
std::string ThreadKlasse::StarteThreadKlasse() {
    laufe=true;

    // hier hängt er sich weg
    hThread=(HANDLE)_beginthreadex(0,0,StarteThread,this,0,0);
    return &quot;gestartet!&quot;;
}

unsigned ThreadKlasse::Run() {
}

unsigned CALLBACK ThreadKlasse::StarteThread(PVOID threadParam) {
    ThreadKlasse * instance = (ThreadKlasse *) threadParam;
    return instance-&gt;Run();
}
</code></pre>
<p>es stehen natürlich noch mehr vars und funcs drin aber die habe ich jetzt mal weggelassen.<br />
ich benutze dev-c++ 4.9.9.1 mit gcc 3.3.1.<br />
und wie gesagt: obiger code compiliert und läuft einwandfrei, nur nicht beim debuggen!<br />
ich hoffe das sind jetzt genung infos und ihr könnt mir helfen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/721923</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721923</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sun, 13 Feb 2005 07:58:20 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 08:08:12 GMT]]></title><description><![CDATA[<p>sn0b schrieb:</p>
<blockquote>
<p>ich benutze dev-c++ 4.9.9.1 mit gcc 3.3.1.<br />
und wie gesagt: obiger code compiliert und läuft einwandfrei, nur nicht beim debuggen!</p>
</blockquote>
<p>der gdb ist auch nicht so toll. dem kann man nicht immer trauen. nimm z.b. den: <a href="http://www.microsoft.com/whdc/devtools/debugging/installx86.mspx" rel="nofollow">http://www.microsoft.com/whdc/devtools/debugging/installx86.mspx</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/721925</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721925</guid><dc:creator><![CDATA[net 0]]></dc:creator><pubDate>Sun, 13 Feb 2005 08:08:12 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 08:14:59 GMT]]></title><description><![CDATA[<p>der gcc ist doch super.<br />
warum ist dann der gdb nicht gut?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721927</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721927</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sun, 13 Feb 2005 08:14:59 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 08:57:05 GMT]]></title><description><![CDATA[<p>Hast Du Dir die Parameter von _beginthreadex() genau angeschaut? So weit ich weiss, muss man noch einen Pointer auf ein &quot;unsigned int&quot; uebergeben, um die Thread-Id geliefert zu bekommen. Weiss aber nicht, wie die Library von DevC++ das handlet.</p>
<p>Probier mal verschiedene Debugging-Optionen aus, der C++ Compiler kann verschieden komplexe Debugging-Formate erzeugen. Vielleicht kommt der Debugger bloss nicht mit dem Debugging-Format zurecht.</p>
<p>Oder aber es liegt wirklich am gdb. Ich hatte auch mal Probleme mit dem Debuggen von Multithread-Anwendungen mit gdb, der ist da naemlich anscheinend etwas unterbelichtet, was das angeht. Offenbar wurde gdb nur fuers Post-Mortem Debugging geschrieben (also, wenn ein Programm abstuerzt und ein Core-Dump schreibt, dass man erst danach gdb aufruft, um den Zustand des Programms zu analysieren und die Fehlerquelle zu finden -- wird aber unter Windows nicht funktionieren, da Windows keine Unix-Core-Dumps schreibt).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/721938</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/721938</guid><dc:creator><![CDATA[Power Off]]></dc:creator><pubDate>Sun, 13 Feb 2005 08:57:05 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 11:09:50 GMT]]></title><description><![CDATA[<p>okay. bin dem link gefolgt und hab mir die Debugging Tools for Windows runtergeladen. hab dann die .exe da reingeladen und ausgeführt. jetzt gehts soweit auch. aber wie überwache ich denn da jetzt ne variable? ich muß eine string-var überwachen. aber ohne source weiß ich ja gar nicht wie und wo. der kann mit den debug infos von gcc auch wohl kaum was anfangen oder? brauche ich jetzt noch vc oder so? das wär ja mist!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/722047</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/722047</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sun, 13 Feb 2005 11:09:50 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 11:53:28 GMT]]></title><description><![CDATA[<p>1. mach doch mal:</p>
<p>unsigned threadid;<br />
hThread=(HANDLE)_beginthreadex(0,0,StarteThread,this,0,&amp;threadid);</p>
<p>2. deine Run Memberfunktion gibt keinen Wert zurück</p>
<p>3. poste einen kompletten code, dann kann ich den in visual c++ ausführen und gucken ob der debugger was sagt.</p>
<p>4. kannst du ja mal deinen compiler und dessen tools updaten. <a href="http://www.mingw.org/" rel="nofollow">http://www.mingw.org/</a> =&gt; MinGW-3.2.0-rc-3.exe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/722079</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/722079</guid><dc:creator><![CDATA[lol.]]></dc:creator><pubDate>Sun, 13 Feb 2005 11:53:28 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 12:05:28 GMT]]></title><description><![CDATA[<p>lol. schrieb:</p>
<blockquote>
<p>1. mach doch mal:</p>
<p>unsigned threadid;<br />
hThread=(HANDLE)_beginthreadex(0,0,StarteThread,this,0,&amp;threadid);</p>
</blockquote>
<p>hab ich schon längst, hat aber nix geändert.</p>
<p>lol. schrieb:</p>
<blockquote>
<p>2. deine Run Memberfunktion gibt keinen Wert zurück</p>
</blockquote>
<p>klar tut sie das. das hab ich hier nur weggelassen...</p>
<p>lol. schrieb:</p>
<blockquote>
<p>4. kannst du ja mal deinen compiler und dessen tools updaten. <a href="http://www.mingw.org/" rel="nofollow">http://www.mingw.org/</a> =&gt; MinGW-3.2.0-rc-3.exe</p>
</blockquote>
<p>werd ich mal probieren...</p>
<p>lol. schrieb:</p>
<blockquote>
<p>3. poste einen kompletten code, dann kann ich den in visual c++ ausführen und gucken ob der debugger was sagt.</p>
</blockquote>
<p>wenn 4. nicht klappt komme ich gerne drauf zurück <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/722097</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/722097</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sun, 13 Feb 2005 12:05:28 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 14:02:34 GMT]]></title><description><![CDATA[<p>okay update gemacht, nix hat sich geändert <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /><br />
kanns auch vielleicht daran liegen:</p>
<blockquote>
<p>This GDB was configured as &quot;i686-pc-mingw32&quot;.</p>
</blockquote>
<p>??<br />
/edit: hab nen P2 400 das ist doch noch kein i686 oder?</p>
<p>und naja, wenn ich den kompletten source poste ist das ziemlich viel.<br />
inclusive aller nötigen dateien sind das dann 15 files... ich müßte auch einiges umstellen/rausnehmen da ich manche sachen nicht posten kann/darf...</p>
<p>geht das vielleicht noch irgendwie anders?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/722199</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/722199</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sun, 13 Feb 2005 14:02:34 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 14:03:45 GMT]]></title><description><![CDATA[<p>hatte auch nicht damit gerechnet das das update hilft. war nur so als tipp nebenbei. und natürlich solltest du nicht deinen kompletten quelltext posten. der sollte so minimal wie möglich gehalten werden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/722202</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/722202</guid><dc:creator><![CDATA[lol.]]></dc:creator><pubDate>Sun, 13 Feb 2005 14:03:45 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 14:08:52 GMT]]></title><description><![CDATA[<p>okay. schon mal danke! wird aber n bisl dauern bis ichs minimiert hab...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/722205</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/722205</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sun, 13 Feb 2005 14:08:52 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 15:07:45 GMT]]></title><description><![CDATA[<p>ich hab den fehler, der mich dazu bewog den debugger zu starten, jetzt gefunden.<br />
nach wie vor bleibt aber mein problem, daß ich nicht vernünftig debuggen kann.</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/8143">@lol</a>.:<br />
das angebot, meinen code zu posten ist ja lieb gemeint, aber ich kann ja schlecht jedesmal wenn ich mal was zu debuggen hab hier posten...</p>
<p>was mach ich denn jetzt <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /><br />
gibts noch nen anderen debugger für gcc?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/722261</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/722261</guid><dc:creator><![CDATA[sn0b]]></dc:creator><pubDate>Sun, 13 Feb 2005 15:07:45 GMT</pubDate></item><item><title><![CDATA[Reply to probleme mit _beginthreadex on Sun, 13 Feb 2005 15:21:59 GMT]]></title><description><![CDATA[<p>wie siehts denn mit dem code hier aus:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &lt;process.h&gt;
#include &lt;iostream&gt;

class Thread
{
public:
	Thread()
	{
		unsigned threadIdentifier;
		_beginthreadex(NULL, 0, ThreadProc, this, 0, &amp;threadIdentifier);
	}
private:
	static unsigned CALLBACK ThreadProc(void* threadArgument)
	{
		Thread* pThread = reinterpret_cast&lt;Thread*&gt;(threadArgument);
		return pThread-&gt;run();
	}

	virtual unsigned run() = 0;
};

class TestThread : public Thread
{
	unsigned run()
	{
		for(;;)
		{
			std::cout &lt;&lt; &quot;Alawalaschabalambaluiblaogalilowampa&quot; &lt;&lt; std::endl;
		}
		return 0;
	}
};

int main()
{
	TestThread thread;

	MSG message;
	while(GetMessage(&amp;message, NULL, 0, 0))
	{
		DispatchMessage(&amp;message);
	}
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/722266</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/722266</guid><dc:creator><![CDATA[Alawalaschabalambaluiblao]]></dc:creator><pubDate>Sun, 13 Feb 2005 15:21:59 GMT</pubDate></item></channel></rss>