<?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[Buttons in Dialogfenster einbinden]]></title><description><![CDATA[<p>Hi,<br />
ich habe folgendes Problem:<br />
Ich öffne mit der &quot;CreateWindow&quot;- Funktion einen Button.</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE d2,
                   LPSTR d3, int d4)
 {
  MSG  msg;
  HWND hwnd;

  hwnd = CreateWindow(&quot;BUTTON&quot;, &quot;Bitte Klicken&quot;, WS_VISIBLE | BS_CENTER, 100, 100, 100, 80,NULL, NULL, hInstance, NULL);
  while (GetMessage(&amp;msg, NULL, 0, 0))
   {
    if (msg.message == WM_LBUTTONUP)
     {
      DestroyWindow(hwnd);
      PostQuitMessage(0);
     }
    DispatchMessage(&amp;msg);
   }
  return msg.wParam;
 }
</code></pre>
<p>Dann habe ich noch ein programm geschrieben:<br />
Es öffnet ein Dialog-Fenster <strong>und</strong> ein Button-Fenster<br />
Mein Problem:<br />
Ich schaffe es einfach nicht den Button in das Dialog-Fenster einzubinden!<br />
Kann mir einer helfen? <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>
]]></description><link>https://www.c-plusplus.net/forum/topic/156448/buttons-in-dialogfenster-einbinden</link><generator>RSS for Node</generator><lastBuildDate>Thu, 23 Jul 2026 00:37:00 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/156448.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 16 Aug 2006 17:36:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 17:36:34 GMT]]></title><description><![CDATA[<p>Hi,<br />
ich habe folgendes Problem:<br />
Ich öffne mit der &quot;CreateWindow&quot;- Funktion einen Button.</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE d2,
                   LPSTR d3, int d4)
 {
  MSG  msg;
  HWND hwnd;

  hwnd = CreateWindow(&quot;BUTTON&quot;, &quot;Bitte Klicken&quot;, WS_VISIBLE | BS_CENTER, 100, 100, 100, 80,NULL, NULL, hInstance, NULL);
  while (GetMessage(&amp;msg, NULL, 0, 0))
   {
    if (msg.message == WM_LBUTTONUP)
     {
      DestroyWindow(hwnd);
      PostQuitMessage(0);
     }
    DispatchMessage(&amp;msg);
   }
  return msg.wParam;
 }
</code></pre>
<p>Dann habe ich noch ein programm geschrieben:<br />
Es öffnet ein Dialog-Fenster <strong>und</strong> ein Button-Fenster<br />
Mein Problem:<br />
Ich schaffe es einfach nicht den Button in das Dialog-Fenster einzubinden!<br />
Kann mir einer helfen? <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>
]]></description><link>https://www.c-plusplus.net/forum/post/1118616</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118616</guid><dc:creator><![CDATA[Lou]]></dc:creator><pubDate>Wed, 16 Aug 2006 17:36:34 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 17:50:33 GMT]]></title><description><![CDATA[<p>Such dir ein richtiges Tutorial...das was da steht bzw. das was du da gepostet hast... ist Quatsch... <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/27a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--right_arrow"
      title=":arrow_right:"
      alt="➡"
    /> <a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-156426.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-156426.html</a></p>
<p>zu deinem Problem: Deinem Button fehlt das Parent-Window. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/26a0.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--warning"
      title=":warning:"
      alt="⚠"
    /></p>
<p>BTW: Man <em>erstellt</em> einen Button und <em>öffnet</em> ihn nicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1118623</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118623</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Wed, 16 Aug 2006 17:50:33 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 17:52:39 GMT]]></title><description><![CDATA[<p>Falls du ein Standard-Window .bzw. Dialog-Konstrukt suchst, guck mal hier: <a href="http://www.winapi.net" rel="nofollow">www.winapi.net</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1118625</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118625</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Wed, 16 Aug 2006 17:52:39 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 17:53:41 GMT]]></title><description><![CDATA[<p>Ein Fenster oder einen Button öffnet man nicht. Ein <em>User</em> öffnet ein Fenster oder <em>klickt</em> auf einen Butten. Ein Programmierer <em>erstellt</em> ein Fenster oder einen Button.</p>
<p>Dein Button muss ein <em><strong>child</strong></em> deines Dialogs sein. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f4a1.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--light_bulb"
      title=":bulb:"
      alt="💡"
    /></p>
<p>Greetz, Swordfish</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1118627</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118627</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Wed, 16 Aug 2006 17:53:41 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 21:17:18 GMT]]></title><description><![CDATA[<p>Kannst du mir vielleicht ein Beispiel schreiben, wie man so einen Button in ein Dialogfenster programmiert?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1118761</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118761</guid><dc:creator><![CDATA[Lou]]></dc:creator><pubDate>Wed, 16 Aug 2006 21:17:18 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 21:39:19 GMT]]></title><description><![CDATA[<p>Lou schrieb:</p>
<blockquote>
<p>Kannst du mir vielleicht ein Beispiel schreiben, wie man so einen Button in ein Dialogfenster programmiert?</p>
</blockquote>
<p>Nagut, ich will mal nicht so sein, hier:<br />
BTW: Google ist manchmal dein Freund <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="😉"
    /> .</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;

// Die Resource ist der Standard-Dialog, wenn man im
// Resourceneditor von MS Visual C++ einen Dialog erstellt.
#include &quot;Resource.h&quot;

// Identifikationsnummer des Buttons:
#define BTN_EXAMPLE   (6000)

BOOL CALLBACK DialogProc (HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, 
                   LPSTR lpCmdLine, int nCmdShow)
{
   return DialogBox (hInstance, MAKEINTRESOURCE(IDD_DIALOG1), NULL, DialogProc);
}

BOOL CALLBACK DialogProc (HWND hDlg, UINT uiMessage, WPARAM wParam, LPARAM lParam)
{
   static HWND hbtnExample;

   switch(uiMessage)
   {

   case WM_INITDIALOG:
      hbtnExample = CreateWindow(TEXT(&quot;BUTTON&quot;), TEXT(&quot;Aufschrift des Buttons&quot;), WS_CHILD | WS_VISIBLE,
                                 10, 10, 100, 20, hDlg, reinterpret_cast&lt;HMENU&gt;(BTN_EXAMPLE),
                                 reinterpret_cast&lt;LPCREATESTRUCT&gt;(lParam)-&gt;hInstance, NULL);
      // Hier weiteres...
      return (TRUE);

   case WM_DESTROY:
   case WM_CLOSE:
      // Hier wird der Dialog geschlossen
      EndDialog(hDlg,0);
      return (TRUE);

   case WM_COMMAND:
      // Hier werden die beiden Buttons, vom Standard-Dialog
      // des MS Visual Studio Resourcengenerators abgefragt.
      switch (LOWORD(wParam))
      {
      case IDCANCEL:
         EndDialog(hDlg,0);
         return (TRUE);

      case IDOK:
         MessageBox(hDlg,
                    TEXT(&quot;Standard-Button gedrückt&quot;),
                    TEXT(&quot;Info&quot;),
                    MB_OK | MB_ICONINFORMATION);
         return (TRUE);

      case BTN_EXAMPLE:
         MessageBox(hDlg,
                    TEXT(&quot;Beispiel-Button gedrückt - wurde unter WM_INITDIALOG erstellt.&quot;),
                    TEXT(&quot;Info&quot;),
                    MB_OK | MB_ICONINFORMATION);
         return (TRUE);

      default:
         break;
      }
      return (FALSE);
   }

   return (FALSE);
}
</code></pre>
<p>PS: Der Code ist <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/26a0.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--warning"
      title=":warning:"
      alt="⚠"
    /> nicht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/26a0.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--warning"
      title=":warning:"
      alt="⚠"
    /> getestet!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1118768</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118768</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Wed, 16 Aug 2006 21:39:19 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 21:56:55 GMT]]></title><description><![CDATA[<p>Ich habe den Code einmal getstet.<br />
Leider erkennt mein Editor nur Error-Anzeigen!<br />
Trotzdem waren einige C-Codes wirklich hilfreich! <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="🙂"
    /><br />
<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="👍"
    /> <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="👍"
    /> Vielen dank für den beitrag <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="👍"
    /> <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/1118773</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118773</guid><dc:creator><![CDATA[Lou]]></dc:creator><pubDate>Wed, 16 Aug 2006 21:56:55 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 22:00:35 GMT]]></title><description><![CDATA[<p>Weiß vielleicht einer von euch, wie man die Ein -und Ausgabe unter Windows Programmiert.<br />
(Ich mein, durch eine Edit-Box Text eingeben und den anschließend in einem Dialogfenster ausgeben?!)<br />
<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>
]]></description><link>https://www.c-plusplus.net/forum/post/1118777</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118777</guid><dc:creator><![CDATA[Lou]]></dc:creator><pubDate>Wed, 16 Aug 2006 22:00:35 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 23:08:26 GMT]]></title><description><![CDATA[<p>*mein_wienerisch_auspack* Jo no-na!? *wienerisch_wieder_einpack*</p>
<p>zB:</p>
<pre><code class="language-cpp">#include &lt;windows.h&gt;

const unsigned int id_edit_box = 100;
const unsigned int id_show_button = 101;

long __stdcall main_window_proc( HWND window, unsigned int message, unsigned int first, long second );

int __stdcall WinMain( HINSTANCE instance, HINSTANCE prev_instance, char *cmd_line, int show_state )
{
    char main_window_name[ ]         = &quot;test&quot;;
    char main_window_class_name[ ]   = &quot;test_window_class&quot;;

    WNDCLASS wc;
    memset( &amp;wc, 0, sizeof( WNDCLASS ) );

    wc.lpszClassName    = main_window_class_name;
    wc.hInstance        = instance;
    wc.style            = CS_HREDRAW | CS_VREDRAW;
    wc.lpfnWndProc      = main_window_proc;
    wc.hIcon            = LoadIcon( 0, IDI_APPLICATION );
    wc.hCursor          = LoadCursor( 0, IDC_ARROW );
    wc.hbrBackground    = reinterpret_cast&lt; HBRUSH &gt;( COLOR_WINDOW + 1 );

    if( !RegisterClass( &amp;wc ) ) {

        MessageBox( 0, &quot;Could not register Window-Class!&quot;, &quot;Error:&quot;, MB_OK );
        return EXIT_FAILURE;
    }

    HWND main_window = CreateWindow(    main_window_class_name,
                                        main_window_name,
                                        WS_BORDER | WS_CAPTION | WS_MINIMIZEBOX | WS_SYSMENU,
                                        CW_USEDEFAULT,
                                        CW_USEDEFAULT,
                                        320, 65,
                                        0, 0,
                                        instance,
                                        0
    );

    if( !main_window ) {

        UnregisterClass( main_window_class_name, instance );
        MessageBox( 0, &quot;Could not create the main window!&quot;, &quot;Error:&quot;, MB_OK );
        return EXIT_FAILURE;
    }

    UpdateWindow( main_window );
    ShowWindow( main_window, show_state );

    MSG msg;

    while( GetMessage( &amp;msg, main_window, 0, 0 ) ) {

        TranslateMessage( &amp;msg );
        DispatchMessage( &amp;msg );
    }

    return static_cast&lt; int &gt;( msg.wParam );
}

long __stdcall main_window_proc( HWND window, unsigned int message, unsigned int first, long second )
{
    static HWND edit_box;
    static HWND show_button;

    switch( message ) {

        case WM_CREATE:

            edit_box = CreateWindow( &quot;EDIT&quot;, &quot;&quot;, WS_CHILD | WS_BORDER | WS_VISIBLE, 10, 10, 200, 20, window, reinterpret_cast&lt; HMENU &gt;( id_edit_box ), 0, 0 );

            if( !edit_box ) {

                return -1;
            }   

            show_button = CreateWindow( &quot;BUTTON&quot;, &quot;&amp;Show Text&quot;, WS_CHILD | WS_BORDER | WS_VISIBLE, 220, 10, 80, 20, window, reinterpret_cast&lt; HMENU &gt;( id_show_button ), 0, 0 );

            if( !show_button ) {

                return -1;
            }

            return 0;

        case WM_COMMAND:

            if( LOWORD( first ) == id_show_button ) {

                char *buffer;
                int length;

                length = GetWindowTextLength( edit_box ) + 1;
                buffer = new char[ length ];

                GetWindowText( edit_box, buffer, length );

                MessageBox( window, buffer, &quot;Input:&quot;, MB_OK );

                delete [ ] buffer;

                return 0;
            }

            break;

        case WM_CLOSE:

            PostQuitMessage( 0 );
            return 0;
    }

    return static_cast&lt; long &gt;( DefWindowProc( window, message, first, second ) );
}
</code></pre>
<p>Greetz, Swordfish</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1118797</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118797</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Wed, 16 Aug 2006 23:08:26 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 23:18:41 GMT]]></title><description><![CDATA[<p>Ach ja, dem Code den CodeFinder gepostet hat musst du ein Ressource-Script</p>
<p>ressource.rc</p>
<pre><code class="language-cpp">IDD_DIALOG1 DIALOGEX 0, 0, 186, 95
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | 
    WS_SYSMENU
CAPTION &quot;Dialog&quot;
FONT 8, &quot;MS Shell Dlg&quot;, 400, 0, 0x1
BEGIN
END
</code></pre>
<p>und eine</p>
<p>ressource.h</p>
<pre><code class="language-cpp">#define IDD_DIALOG1 100
</code></pre>
<p>hinzufügen. Dann musst du leider noch folgende Zeilen</p>
<pre><code class="language-cpp">case WM_INITDIALOG:
    hbtnExample = CreateWindow( TEXT( &quot;BUTTON&quot; ), TEXT( &quot;Aufschrift des Buttons&quot; ), WS_CHILD | WS_VISIBLE,
                                 10, 10, 100, 20, hDlg, reinterpret_cast&lt; HMENU &gt;( BTN_EXAMPLE ),
                                 reinterpret_cast&lt;LPCREATESTRUCT&gt;(lParam)-&gt;hInstance, NULL );
      // Hier weiteres...
      return (TRUE);
</code></pre>
<p>durch</p>
<pre><code class="language-cpp">case WM_INITDIALOG:
    hbtnExample = CreateWindow( TEXT( &quot;BUTTON&quot; ),
                                TEXT( &quot;Aufschrift des Buttons&quot; ),
                                WS_CHILD | WS_VISIBLE,
                                10, 10, 100, 20,
                                hDlg,
                                reinterpret_cast&lt;HMENU&gt;( BTN_EXAMPLE ),
                                GetModuleHandle( 0 ), 0 );

      return TRUE;
</code></pre>
<p>ersetzten.</p>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/12048">@CodeFinder</a>: <em>DialogBox( )</em> spendiert der <em>WM_INITDIALOG</em>-Message keine <em>CREATESTRUCT</em>!</p>
<p>Greetz, Swordfish</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1118800</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118800</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Wed, 16 Aug 2006 23:18:41 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Wed, 16 Aug 2006 23:23:58 GMT]]></title><description><![CDATA[<p>Ich glaube wirklich du solltest dir mal ein paar gute Tutorials über WinApi-Programmierung zu Gemüte führen.</p>
<p>Hier mal ein paar Hinweise wo du sowas findest:</p>
<p>1. <a href="http://www.winapi.net" rel="nofollow">www.winapi.net</a><br />
2. <a href="http://www.win-api.de" rel="nofollow">www.win-api.de</a><br />
3. <a href="http://www.henkessoft3000.de/" rel="nofollow">http://www.henkessoft3000.de/</a><br />
4. ... (Google wird da sicher noch ein paar kennen) <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="😉"
    /></p>
<p>//edit: Ganz vergessen, die FAQ dieses Forums ist auch manchmal sehr hilfreich</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1118802</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1118802</guid><dc:creator><![CDATA[flammenvogel]]></dc:creator><pubDate>Wed, 16 Aug 2006 23:23:58 GMT</pubDate></item><item><title><![CDATA[Reply to Buttons in Dialogfenster einbinden on Thu, 17 Aug 2006 12:39:49 GMT]]></title><description><![CDATA[<p>Swordfish schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/12048">@CodeFinder</a>: <em>DialogBox( )</em> spendiert der <em>WM_INITDIALOG</em>-Message keine <em>CREATESTRUCT</em>!</p>
</blockquote>
<p>Jop, my fault. War ne Copy&amp;Paste Aktion...deswegen der Fehler...GetModuleHandle(NULL) muss da natürlich hin. Danke. <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="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1119152</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1119152</guid><dc:creator><![CDATA[CodeFinder]]></dc:creator><pubDate>Thu, 17 Aug 2006 12:39:49 GMT</pubDate></item></channel></rss>