<?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[Anfängerproblem mit Menü]]></title><description><![CDATA[<p>Hallo, Programmierer!<br />
Ich habe hier folgendes Programm, das aus einem Tutorial stammt. Es soll ein einfaches Programmfenster mit einem kleinen Menü werden. Es wird vollständig kompiliert (Borland C++ 5.02), auch .rc und .h-Dateien. Aber dann hakt es.</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &quot;resource.h&quot;

LPCSTR MainClassName = &quot;Ein Menü-Beispiel&quot;;

LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
   WNDCLASSEX	wc;
   HWND	        hWnd; 	
   MSG	        msg;		
   const char   szAppName[] = &quot;ein Menü&quot;;
   wc.cbSize 	          = sizeof(WNDCLASSEX);
   wc.style		  = CS_HREDRAW| CS_VREDRAW; 
   wc.lpfnWndProc         = WndProc;  

   wc.cbClsExtra	  = 0;
   wc.cbWndExtra	  = 0;

   wc.hInstance	          = hInstance; 
   wc.hCursor	          = LoadCursor(NULL,IDC_ARROW);
   wc.hIcon	          = LoadIcon(NULL,IDI_APPLICATION);
   wc.hbrBackground       = (HBRUSH)GetStockObject(WHITE_BRUSH);
   wc.lpszClassName       = MainClassName; 
   wc.lpszMenuName        = MAKEINTRESOURCE(IDM_MENU1);
   if (!RegisterClassEx (&amp;wc));
	{
   	MessageBox(NULL, &quot;Windows Registrierungsfehler&quot;, &quot;Error!&quot;,
      				MB_ICONEXCLAMATION|MB_OK);
      return 0;
   }
....
</code></pre>
<p>Danach kommt noch einiges, das ist aber hier nicht wichtig, weil das Programm mit der MessageBox &quot;Registrierungsfehler&quot; abbricht. Beim Compelieren erhalte ich die Warnung &quot;unreachable Code&quot;. Also, die Fensterklasse wird gar nicht registriert, die Message-Loop also gar nicht ausgeführt.</p>
<p>Wo sitzt der Haken? Bitte helft mir mal <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="😕"
    /> . Ich möchte auch mal ein Prog mit Resourcen schreiben. <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="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/topic/134445/anfängerproblem-mit-menü</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Jul 2026 21:52:11 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/134445.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 26 Jan 2006 08:20:42 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 12:45:37 GMT]]></title><description><![CDATA[<p>Hallo, Programmierer!<br />
Ich habe hier folgendes Programm, das aus einem Tutorial stammt. Es soll ein einfaches Programmfenster mit einem kleinen Menü werden. Es wird vollständig kompiliert (Borland C++ 5.02), auch .rc und .h-Dateien. Aber dann hakt es.</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;
#include &quot;resource.h&quot;

LPCSTR MainClassName = &quot;Ein Menü-Beispiel&quot;;

LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
   WNDCLASSEX	wc;
   HWND	        hWnd; 	
   MSG	        msg;		
   const char   szAppName[] = &quot;ein Menü&quot;;
   wc.cbSize 	          = sizeof(WNDCLASSEX);
   wc.style		  = CS_HREDRAW| CS_VREDRAW; 
   wc.lpfnWndProc         = WndProc;  

   wc.cbClsExtra	  = 0;
   wc.cbWndExtra	  = 0;

   wc.hInstance	          = hInstance; 
   wc.hCursor	          = LoadCursor(NULL,IDC_ARROW);
   wc.hIcon	          = LoadIcon(NULL,IDI_APPLICATION);
   wc.hbrBackground       = (HBRUSH)GetStockObject(WHITE_BRUSH);
   wc.lpszClassName       = MainClassName; 
   wc.lpszMenuName        = MAKEINTRESOURCE(IDM_MENU1);
   if (!RegisterClassEx (&amp;wc));
	{
   	MessageBox(NULL, &quot;Windows Registrierungsfehler&quot;, &quot;Error!&quot;,
      				MB_ICONEXCLAMATION|MB_OK);
      return 0;
   }
....
</code></pre>
<p>Danach kommt noch einiges, das ist aber hier nicht wichtig, weil das Programm mit der MessageBox &quot;Registrierungsfehler&quot; abbricht. Beim Compelieren erhalte ich die Warnung &quot;unreachable Code&quot;. Also, die Fensterklasse wird gar nicht registriert, die Message-Loop also gar nicht ausgeführt.</p>
<p>Wo sitzt der Haken? Bitte helft mir mal <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="😕"
    /> . Ich möchte auch mal ein Prog mit Resourcen schreiben. <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="😞"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/976570</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/976570</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Thu, 26 Jan 2006 12:45:37 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 09:56:34 GMT]]></title><description><![CDATA[<p>SERVUS.</p>
<p>schau dir mal deinen funktionskopf an. sollte da ein tippfehler sein (PSTR szCmdLine)?</p>
<p>versuchs doch mal so:</p>
<pre><code class="language-cpp">int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,LPSTR szCmdLine,
 int nCmdShow)
</code></pre>
<p>STICK.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/976649</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/976649</guid><dc:creator><![CDATA[stick_thai]]></dc:creator><pubDate>Thu, 26 Jan 2006 09:56:34 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 11:54:26 GMT]]></title><description><![CDATA[<p>Habs versucht, hat nicht geklappt. Trotzdem danke für den Hinweis.</p>
<p>Wer weiß noch was?</p>
<p>Könnte es daran liegen, daß der Compiler nicht weiß, wo er das Menu1 hernehmen soll? (weil alle anderen Progs ohne Menü haben bisher funktioniert. <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>Wie gesagt, ich arbeite mit Borland 5.02, da gibt es keine Kommandozeile. In der Projektdatei ist die .rc eingetragen, aber vielleicht reicht das nicht. Muß man die .rc-Datei irgendwo angeben?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/976652</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/976652</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Thu, 26 Jan 2006 11:54:26 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 10:28:03 GMT]]></title><description><![CDATA[<p>SERVUS.</p>
<p>füg doch mal folgende zeile ein, und zwar vor der if-anweisung.</p>
<p>wc.hIconSm = LoadIcon(NULL, IDI_APPLICATION);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/976691</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/976691</guid><dc:creator><![CDATA[stick_thai]]></dc:creator><pubDate>Thu, 26 Jan 2006 10:28:03 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 10:32:07 GMT]]></title><description><![CDATA[<p>IDM_MENU1 sollte auf einen Eintrag in der rc-Datei verweisen:</p>
<p>z.B.:</p>
<pre><code class="language-cpp">IDM_MENU1 MENU DISCARDABLE 
BEGIN
    POPUP &quot;&amp;Datei&quot;
    BEGIN
        MENUITEM &quot;&amp;Neu\tStrg+N&quot;,                IDM_FILE_NEW, GRAYED
        MENUITEM &quot;Ö&amp;ffnen...\tStrg+O&quot;,          IDM_FILE_OPEN
</code></pre>
<p>Die Menues stehen dann in der resource.h :</p>
<pre><code class="language-cpp">#define IDM_FILE_NEW                    40077
#define IDM_FILE_OPEN                   40078
...
</code></pre>
<p>Wenn hier in der Zuornung was nicht stimmt, kann Windows das Programm nicht registrieren.<br />
Mit</p>
<pre><code class="language-cpp">if (!RegisterClass (&amp;wc))
		{
			LPVOID lpMsgBuf;
			FormatMessage (FORMAT_MESSAGE_ALLOCATE_BUFFER | 
				FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
				NULL, GetLastError (),
				MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
				(LPTSTR) &amp;lpMsgBuf, 0, NULL);
			MessageBox (NULL, (LPCTSTR)lpMsgBuf, &quot;Error RegisterClass Main Window:&quot;, 
				MB_OK | MB_ICONSTOP);
			LocalFree (lpMsgBuf);
			return FALSE;
		}
</code></pre>
<p>kann man sich den Fehler detaillierte ausgeben lassen.</p>
<p>Blackbird</p>
]]></description><link>https://www.c-plusplus.net/forum/post/976699</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/976699</guid><dc:creator><![CDATA[*Blackbird*]]></dc:creator><pubDate>Thu, 26 Jan 2006 10:32:07 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 12:44:58 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/680">@Blackbird</a><br />
Welches IDM-Menu1 sollte diesen .rc-Verweis enthalten, die resource.h oder der<br />
cpp-Code?<br />
Meine .rc-Datei sieht so aus:</p>
<pre><code class="language-cpp">[code]
#include &quot;resource.h&quot;
LANGUAGE LANG_GERMAN,SUBLANG_GERMAN

IDM_MENU1 MENU DISCARDABLE
{
 POPUP &quot;&amp;Datei&quot;
 {
  MENUITEM &quot;&amp;Öffnen&quot;, 102
  MENUITEM &quot;&amp;Speichern&quot;, 103
  MENUITEM SEPARATOR
  MENUITEM &quot;&amp;Beenden&quot;, 108
 }

 POPUP &quot;&amp;Hilfe&quot;
 {
  MENUITEM &quot;&amp;Über&quot;, 903
 }

}

STRINGTABLE 
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
{
 102, &quot;Datei öffnen&quot;
 103, &quot;Datei Speichern&quot;
 108, &quot;Programm Beenden&quot;
 903, &quot;Infos zum Programm&quot;
}
[/code]
</code></pre>
<p>Und hier noch meine resource.h:</p>
<pre><code>#define IDM_MENU1 1
#define IDS_STRING_OPEN	102
#define IDS_STRING_SAVE	103
#define IDS_STRING_EXIT	108
#define IDS_STRING_ABOUT	903

#define IDM_FILE_OPEN 102
#define IDM_FILE_SAVE 103
#define IDM_FILE_EXIT 108
#define IDM_HELP_ABOUT 903
</code></pre>
<p>Die Datei wurde mit Borland Resource Workshop erstellt, daher die Klammern statt &quot;BEGIN&quot; und &quot;END&quot;.</p>
<p>Ich habe mal Deinen Zusatzcode bei mir eingefügt. Da bekomme ich die MessageBox &quot;Das System kann die angegebene Datei nicht finden&quot;. Scheint also doch ein fehlender Datei-Verweis zu sein.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/976827</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/976827</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Thu, 26 Jan 2006 12:44:58 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 12:59:22 GMT]]></title><description><![CDATA[<p>*guckt sich den Code sehr genau an*</p>
<p>hinter dem if(...) ist ein Semikolon zu viel - dadurch steht der anschließende Programmblock für sich alleine (das if() kontrolliert eine leere Anweisung).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/976901</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/976901</guid><dc:creator><![CDATA[CStoll (off)]]></dc:creator><pubDate>Thu, 26 Jan 2006 12:59:22 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 14:14:35 GMT]]></title><description><![CDATA[<p>Ja, das war es. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f62e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--face_with_open_mouth"
      title=":open_mouth:"
      alt="😮"
    /> Au, ist das blöd.</p>
<p>Tja, nun erhalte ich immerhin eine schwarze DOS-Box und einen Ausnahmefehler :p <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /><br />
Muß wohl noch ein bißchen tüfteln. Aber danke für die Hilfe!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/977000</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/977000</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Thu, 26 Jan 2006 14:14:35 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 14:58:35 GMT]]></title><description><![CDATA[<p>wegen der schwarzen dos-box:<br />
das projekt ist warscheinlich als dos-box-projekt, nicht winapi-projekt erstellt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/977038</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/977038</guid><dc:creator><![CDATA[ItsNotYou]]></dc:creator><pubDate>Thu, 26 Jan 2006 14:58:35 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 15:11:10 GMT]]></title><description><![CDATA[<p>Nein, im TargetExpert und in der Projektdatei ist &quot;GUI&quot; eingestellt. Außerdem würde der Compiler einen &quot;unresolved external &quot;main&quot; ect...&quot;-Fehler von sich geben.</p>
<p>Ich vermute, es liegt irgendwo bei CreateWindowEx.</p>
<p>Hier mal der Rest des Progs, (weil ihr so hilfsbereit seid <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> <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>
<pre><code class="language-cpp">if (!RegisterClassEx (&amp;wc))//Meldet das Fenster im Fenstermanager bei Windows an.
	{
            LPVOID lpMsgBuf;
            FormatMessage (FORMAT_MESSAGE_ALLOCATE_BUFFER |
                FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
                NULL, GetLastError (),
                MAKELANGID (LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
                (LPTSTR) &amp;lpMsgBuf, 0, NULL);
            MessageBox (NULL, (LPCTSTR)lpMsgBuf, &quot;Error RegisterClass Main Window:&quot;,
                MB_OK | MB_ICONSTOP);
            LocalFree (lpMsgBuf);
            return FALSE;
        }

hWnd = CreateWindowEx(WS_EX_CLIENTEDGE, szAppName,
   			&quot;erstes Menü&quot;,    
                        WS_OVERLAPPEDWINDOW|WS_VISIBLE, 
                        CW_USEDEFAULT,	
                        CW_USEDEFAULT,   
                        CW_USEDEFAULT,	
                        CW_USEDEFAULT,	
                        NULL,					
                        NULL,					
                        hInstance,        
                        NULL);

   ShowWindow (hWnd, iCmdShow);	
   UpdateWindow (hWnd);	
   while (GetMessage(&amp;msg, NULL,0,0))	
   {
      TranslateMessage(&amp;msg);	
      DispatchMessage(&amp;msg);
   }
	return msg.wParam;
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)

{
	char string[255];
	switch (msg)
   {
   	case WM_CLOSE:
      	DestroyWindow(hWnd);
         break;
      case WM_DESTROY:
      	PostQuitMessage(0);
         return 0;
      case WM_COMMAND:
      	switch(LOWORD(wParam))
         {
            case IDM_FILE_OPEN:
            	LoadString(GetModuleHandle(NULL), IDS_STRING_OPEN, string, sizeof(string));
               MessageBox(hWnd, string, &quot;Öffnen der Datei&quot;, MB_ICONINFORMATION);
               break;
            case IDM_FILE_SAVE:
            	LoadString(GetModuleHandle(NULL), IDS_STRING_SAVE, string, sizeof(string));
               MessageBox(hWnd, string, &quot;Speichern der Datei&quot;, MB_ICONINFORMATION);
               break;
            case IDM_HELP_\1:
            	LoadString(GetModuleHandle(NULL), IDS_STRING_ABOUT, string, sizeof(string));
               MessageBox(hWnd, string, &quot;geschrieben am 21.01.2006&quot;, MB_ICONINFORMATION);
               break;
            case IDM_FILE_EXIT:
            	DestroyWindow(hWnd);
            	break;
      	}
   	break;
   }
	return DefWindowProc(hWnd, msg, wParam, lParam);
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/977044</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/977044</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Thu, 26 Jan 2006 15:11:10 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 15:09:29 GMT]]></title><description><![CDATA[<p>Elektronix schrieb:</p>
<blockquote>
<p>Nein, im TargetExpert und in der Projektdatei ist &quot;GUI&quot; eingestellt. Außerdem würde der Compiler einen &quot;unresolved external &quot;main&quot; ect...&quot;-Fehler von sich geben.</p>
</blockquote>
<p>sicher? mit mingw konnte ich alles problemlos kompilieren+starten, obwohl konsole eingestellt war</p>
]]></description><link>https://www.c-plusplus.net/forum/post/977047</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/977047</guid><dc:creator><![CDATA[ItsNotYou]]></dc:creator><pubDate>Thu, 26 Jan 2006 15:09:29 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Thu, 26 Jan 2006 15:42:52 GMT]]></title><description><![CDATA[<p>Gut zu wissen, dann liegt der Fehler wenigstens nicht bei mir.. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /><br />
Habs auch noch ohne Projekt-Datei versucht, also alles zu Fuß compiliert. Funzt auch nicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/977049</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/977049</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Thu, 26 Jan 2006 15:42:52 GMT</pubDate></item><item><title><![CDATA[Reply to Anfängerproblem mit Menü on Sun, 29 Jan 2006 15:28:15 GMT]]></title><description><![CDATA[<p>Hurra, hab es selbst heruasgefunden! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f576.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--sunglasses"
      title=":sunglasses:"
      alt="🕶"
    /> <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="🙂"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/979868</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/979868</guid><dc:creator><![CDATA[Elektronix]]></dc:creator><pubDate>Sun, 29 Jan 2006 15:28:15 GMT</pubDate></item></channel></rss>