<?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[Problem mit RGBQUAD-Variable! Wert wird nicht richtig erkannt!]]></title><description><![CDATA[<p>Hi@LL<br />
Erstmal danke fürs lesen ;).<br />
Da ich jetzt länger mal wieder pausiert habe was das Codamieren angeht<br />
und ich mich jetzt fast einen Monat mit diesem Thema beschäfige hehe...<br />
bin ich jetzt doch mal auf Hilfe angewiesen.<br />
Die RGBQUAD Variable wird durch eine CreateDIBSelect()erstellt und läuft<br />
normalerweise auch einbahnfrei. Seit dem ich die Grafik vorher noch erstelle<br />
geht hier etwas nicht mehr und ich verstehe nicht warum. Die RGBQUAD gibt einen Wert aus den die RGB-Bereiche aber nicht lesen können.</p>
<p>Hier der Code! EIN KLEINER HINWEIS WÄRE NICHT SCHLECHT! <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>RGBQUAD* memory;
OpenClipboard(NULL);
HBITMAP hBmp = (HBITMAP) GetClipboardData(CF_BITMAP);
CloseClipboard();
if(hBmp==NULL)
{
MessageBox(NULL,&quot;Error GetClipboardData(CF_BITMAP)&quot;,NULL,MB_OK);
 DeleteDC(screen);
 PostQuitMessage(0);
 return 0;
}

if ( NULL == hBmp )
		return false;  
HDC dcmem = CreateCompatibleDC ( NULL );
if ( NULL == SelectObject ( dcmem, hBmp ) )
	{
	MessageBox(NULL,&quot;Error SelectObjekt(dcmem,hBmp)&quot;,NULL,MB_OK);
	DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
	}

	BITMAP bmp;
	if(GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)==0)
    {
    MessageBox(NULL,&quot;Error GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
    }

	SelectObject(hDC, hBmp);

     SetStretchBltMode(hDC,HALFTONE);
     if(StretchBlt(hDC, 0,0, dx,dy,dcmem,0, 0, dx+dx-dx/2,dy+dy-dy/2,SRCCOPY)==0)
     {	
     MessageBox(NULL,&quot;Error StretchBlt(hDC, 0, 0, dx, dy, dcmem, 0, 0, dx+dx-dx/2,dy+dy-dy/2,SRCCOPY)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
	}
//////////////////////////////////////////////////////////////////////////

////////////Bis hier läuft alles noch normal!!!!/////////////////////

 /////////////////////////////////////////////////////////////////
 if(GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)==0)
    {
    MessageBox(NULL,&quot;Error GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
    }
 SelectObject(hDC, hBmp);
 ///////////////Pixel finden im Bild////////////////////   
bitmap = CreateDIBSection(hDC, &amp;info, DIB_RGB_COLORS, (void**)&amp;memory, 0, 0);
if (bitmap==0)
    {	
    MessageBox(NULL,&quot;Error CreateDIBSection(hDC, &amp;info, DIB_RGB_COLORS, (void**)&amp;memory, 0, 0)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
	}
 HDC hdcMemory  = CreateCompatibleDC(hDC);
     HGDIOBJ oldbitmap = SelectObject(hdcMemory, bitmap);
    // BitBlt(hdcMemory, 0, 0, dx, dy, hDC, 0, 0, SRCCOPY);

////////////////----------------------------//////////////////////

 int tbytes = dx * dy;
     int r,g,b;

     // biBitCount = 32;
     for (i=0; i&lt;tbytes; i++)
     {

         RGBQUAD *p = &amp;memory[i]; //Die Werte sind nicht Compatible

         r=p-&gt;rgbRed;          //Keinen Wert
         g=p-&gt;rgbGreen;
         b=p-&gt;rgbBlue;
</code></pre>
<p>!!!BITTE NICHT DIE STRECHBLT BEACHTEN DAS HAT MIT MEINEM HDMI AUSGANG ZU TUN!!!</p>
<p>Danke nochmal! <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/topic/305534/problem-mit-rgbquad-variable-wert-wird-nicht-richtig-erkannt</link><generator>RSS for Node</generator><lastBuildDate>Sat, 08 Aug 2026 14:29:03 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/305534.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 01 Jul 2012 18:02:08 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Problem mit RGBQUAD-Variable! Wert wird nicht richtig erkannt! on Sun, 01 Jul 2012 21:19:02 GMT]]></title><description><![CDATA[<p>Hi@LL<br />
Erstmal danke fürs lesen ;).<br />
Da ich jetzt länger mal wieder pausiert habe was das Codamieren angeht<br />
und ich mich jetzt fast einen Monat mit diesem Thema beschäfige hehe...<br />
bin ich jetzt doch mal auf Hilfe angewiesen.<br />
Die RGBQUAD Variable wird durch eine CreateDIBSelect()erstellt und läuft<br />
normalerweise auch einbahnfrei. Seit dem ich die Grafik vorher noch erstelle<br />
geht hier etwas nicht mehr und ich verstehe nicht warum. Die RGBQUAD gibt einen Wert aus den die RGB-Bereiche aber nicht lesen können.</p>
<p>Hier der Code! EIN KLEINER HINWEIS WÄRE NICHT SCHLECHT! <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>RGBQUAD* memory;
OpenClipboard(NULL);
HBITMAP hBmp = (HBITMAP) GetClipboardData(CF_BITMAP);
CloseClipboard();
if(hBmp==NULL)
{
MessageBox(NULL,&quot;Error GetClipboardData(CF_BITMAP)&quot;,NULL,MB_OK);
 DeleteDC(screen);
 PostQuitMessage(0);
 return 0;
}

if ( NULL == hBmp )
		return false;  
HDC dcmem = CreateCompatibleDC ( NULL );
if ( NULL == SelectObject ( dcmem, hBmp ) )
	{
	MessageBox(NULL,&quot;Error SelectObjekt(dcmem,hBmp)&quot;,NULL,MB_OK);
	DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
	}

	BITMAP bmp;
	if(GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)==0)
    {
    MessageBox(NULL,&quot;Error GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
    }

	SelectObject(hDC, hBmp);

     SetStretchBltMode(hDC,HALFTONE);
     if(StretchBlt(hDC, 0,0, dx,dy,dcmem,0, 0, dx+dx-dx/2,dy+dy-dy/2,SRCCOPY)==0)
     {	
     MessageBox(NULL,&quot;Error StretchBlt(hDC, 0, 0, dx, dy, dcmem, 0, 0, dx+dx-dx/2,dy+dy-dy/2,SRCCOPY)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
	}
//////////////////////////////////////////////////////////////////////////

////////////Bis hier läuft alles noch normal!!!!/////////////////////

 /////////////////////////////////////////////////////////////////
 if(GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)==0)
    {
    MessageBox(NULL,&quot;Error GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
    }
 SelectObject(hDC, hBmp);
 ///////////////Pixel finden im Bild////////////////////   
bitmap = CreateDIBSection(hDC, &amp;info, DIB_RGB_COLORS, (void**)&amp;memory, 0, 0);
if (bitmap==0)
    {	
    MessageBox(NULL,&quot;Error CreateDIBSection(hDC, &amp;info, DIB_RGB_COLORS, (void**)&amp;memory, 0, 0)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;
	}
 HDC hdcMemory  = CreateCompatibleDC(hDC);
     HGDIOBJ oldbitmap = SelectObject(hdcMemory, bitmap);
    // BitBlt(hdcMemory, 0, 0, dx, dy, hDC, 0, 0, SRCCOPY);

////////////////----------------------------//////////////////////

 int tbytes = dx * dy;
     int r,g,b;

     // biBitCount = 32;
     for (i=0; i&lt;tbytes; i++)
     {

         RGBQUAD *p = &amp;memory[i]; //Die Werte sind nicht Compatible

         r=p-&gt;rgbRed;          //Keinen Wert
         g=p-&gt;rgbGreen;
         b=p-&gt;rgbBlue;
</code></pre>
<p>!!!BITTE NICHT DIE STRECHBLT BEACHTEN DAS HAT MIT MEINEM HDMI AUSGANG ZU TUN!!!</p>
<p>Danke nochmal! <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/2229000</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2229000</guid><dc:creator><![CDATA[masterslavemaster]]></dc:creator><pubDate>Sun, 01 Jul 2012 21:19:02 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit RGBQUAD-Variable! Wert wird nicht richtig erkannt! on Sun, 01 Jul 2012 18:19:06 GMT]]></title><description><![CDATA[<p>Bitte Link in meiner Signatur anklicken und dann aufmerksam Lesen.<br />
Anschließend editieren und richtig machen.</p>
<p>Danke nochmal! <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/2229009</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2229009</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sun, 01 Jul 2012 18:19:06 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit RGBQUAD-Variable! Wert wird nicht richtig erkannt! on Sun, 01 Jul 2012 20:20:26 GMT]]></title><description><![CDATA[<p>Hatte ich übersehen! <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/2229048</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2229048</guid><dc:creator><![CDATA[masterslavemaster]]></dc:creator><pubDate>Sun, 01 Jul 2012 20:20:26 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit RGBQUAD-Variable! Wert wird nicht richtig erkannt! on Thu, 05 Jul 2012 21:40:36 GMT]]></title><description><![CDATA[<p>Vielen Dank!</p>
<pre><code>#include &lt;windows.h&gt;
#include &lt;stdio.h&gt;
#include &lt;string.h&gt;
#include &quot;res.h&quot;
#include &lt;time.h&gt;
#include &lt;ctime&gt;
//process the window messages
LRESULT CALLBACK windowProc(HWND, UINT, WPARAM, LPARAM);
//extract RGB values from COLORREF

//////////////////////////////BETA CODER/////////////////////////////////////////

//DIRECTX MODULE umgehen mit Windows! Für Einsteiger! ////////////////////

////////////BEI manchen DIRECTX Programmen brauchen an noch einen Hook für die Tasten///

//timer id
unsigned int timer = 1;
//interval in ms to get the color
unsigned int interval = 1;

int dx = GetSystemMetrics(SM_CXSCREEN); 
int dy = GetSystemMetrics(SM_CYSCREEN); 
int timex =0;
//main function
int multi;

bool LoadBMPIntoDC ( HDC hDC)
{

     multi=3/2;

///////////////Daten//////////////////////////////     
    BITMAPINFO info = {0};
     info.bmiHeader.biSize     = sizeof(BITMAPINFOHEADER);
     info.bmiHeader.biWidth    = dx;
     info.bmiHeader.biHeight   = dy;
     info.bmiHeader.biPlanes   = 1;
     info.bmiHeader.biBitCount = 32; 

      int x=1, y=1, i;

     HBITMAP bitmap;
     RGBQUAD* memory;

/////////////////////////////////////////////////////     

///////////////Bild in den Speicher laden aus Clipboard//////////////     

if ( ( NULL == hDC  ) )
		return false;

///We then use the windows function LoadImage to load the bitmap into a Bitmap Handle:
OpenClipboard(NULL);
HBITMAP hBmp = (HBITMAP) GetClipboardData(CF_BITMAP);
CloseClipboard();
if(hBmp==NULL)
{
/*MessageBox(NULL,&quot;Error GetClipboardData(CF_BITMAP)&quot;,NULL,MB_OK);
 DeleteDC(screen);
 PostQuitMessage(0);
 return 0;*/
}

if ( NULL == hBmp )
		return false;  
HDC dcmem = CreateCompatibleDC ( hDC );
if ( NULL == SelectObject ( dcmem, hBmp ) )
	{
	/*MessageBox(NULL,&quot;Error SelectObjekt(dcmem,hBmp)&quot;,NULL,MB_OK);
	DeleteDC(screen);
    PostQuitMessage(0);
    return 0;*/
	}

	BITMAP bmp;
	if(GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)==0)
    {
    /*MessageBox(NULL,&quot;Error GetObject(hBmp, sizeof(BITMAP), (LPSTR)&amp;bmp)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;*/
    }

	SelectObject(hDC, hBmp);

     SetStretchBltMode(hDC,HALFTONE);
     if(StretchBlt(hDC, 
                  0, 
                  0, 
                  dx, 
                  dy, 
                  dcmem, 
                  0, 
                  0, 
                  dx,
                  dy,
                  SRCCOPY)==0)
                  	{	
    /*MessageBox(NULL,&quot;Error StretchBlt(hDC, 0, 0, dx, dy, dcmem, 0, 0, dx+dx-dx/2,dy+dy-dy/2,SRCCOPY)&quot;,NULL,MB_OK);
    DeleteDC(screen);
    PostQuitMessage(0);
    return 0;*/
	}
    HDC UeberHdc = CreateCompatibleDC ( hDC );
    UeberHdc = hDC;

    DeleteDC ( dcmem );  // clear up the memory dc	
	return true;
}
///////////////////////////////////////////////////////////////////////////////////

bool FindPixelred1(HDC hDC)
     {
     if(!GetAsyncKeyState(0x10))
     {

     keybd_event(0x2c, 0, 0, 0);
     keybd_event(0x2c,0, KEYEVENTF_KEYUP,0); 

     int x=1, y=1, i;

     int dx = GetSystemMetrics(SM_CXSCREEN);
     int dy = GetSystemMetrics(SM_CYSCREEN);

     BITMAPINFO info = {0};
     info.bmiHeader.biSize     = sizeof(BITMAPINFOHEADER);
     info.bmiHeader.biWidth    = dx;
     info.bmiHeader.biHeight   = dy;
     info.bmiHeader.biPlanes   = 1;
     info.bmiHeader.biBitCount = 32; // 32:RGBQUAD; 24:RGBTRIPLE

     HBITMAP bitmap;
     RGBQUAD* memory;

     bitmap = CreateDIBSection(hDC, &amp;info, DIB_RGB_COLORS, (void**)&amp;memory, 0, 0);
     //if(!bitmap || !memory) return ReleaseDC(0, hdcDesktop);

     HDC hdcMemory  = CreateCompatibleDC(hdcMemory);
     HGDIOBJ oldbitmap = SelectObject(hdcMemory, bitmap);
     BitBlt(hdcMemory, 0, 0, dx, dy, hDC, 0, 0, SRCCOPY);
     SelectObject(hdcMemory, oldbitmap);
     DeleteDC(hdcMemory);
     //ReleaseDC(0, hdcDesktop); später

    int red,green,blue,rx,gx,bx;

     int tbytes = dx * dy;

     // biBitCount = 32;
     for (i=0; i&lt;tbytes; i++)
     {
         RGBQUAD *p = &amp;memory[i];

         if (RGB(p-&gt;rgbRed, p-&gt;rgbGreen, p-&gt;rgbBlue) == RGB(255,0,0))//Rot //Hier die gewünschte Farbe einstellen
         {
             y = i / dx;
             x = i % dx;
             y = dy - y - 1; // nur wenn info.bmiHeader.biHeight ist positiv

             SetCursorPos(x,y);

             break;
         }
     }
     Sleep(100);
     DeleteObject(bitmap);
     }
     return true;
     }

/////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////////////////////

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
                    LPSTR lpCmdLine, int nCmdShow)
{
    //program and class name
    const char *progName = &quot;COPY to CLIPBOARD find PIXEL&quot;;

    //create window class
    WNDCLASS windowClass;

    //message function
    windowClass.lpfnWndProc = windowProc;
    //enable redrawing
    windowClass.style       = CS_HREDRAW | CS_VREDRAW;
    //program instance
    windowClass.hInstance   = hInstance;
    //standard cursor
    windowClass.hCursor     = LoadCursor(NULL, IDC_ARROW);
    //standard icon
    windowClass.hIcon       = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(IDI_MYICON));
    //gray background
    windowClass.hbrBackground = static_cast&lt;HBRUSH&gt;(GetStockObject(BLACK_BRUSH));
    //extra buffer
    windowClass.cbClsExtra  = 0;
    windowClass.cbWndExtra  = 0;
    //name to represent our window class
    windowClass.lpszClassName = progName;
    //we don't need menu
    windowClass.lpszMenuName  = NULL;

    //register our class to windows
    if(!RegisterClass(&amp;windowClass))
            return 0;

    //create window
    HWND window;
    window = CreateWindowEx(WS_EX_TRANSPARENT, //allways on top of others
                            progName, //name of window class
                            progName, //text in the titlebar
                            //no resizable window without minimize option
                            WS_POPUP|WS_MINIMIZE|WS_CAPTION|WS_SYSMENU|WS_MINIMIZEBOX,
                            //default window position
                            0, 0,
                            //window width and height
                            dx, dy,
                            //no parent window
                            NULL,
                            //no menu
                            NULL,
                            hInstance,
                            //no extra parameters
                            NULL);

    //quit if we can't create a window

if(!window)
        return 0;

    //show
    ShowWindow(window, nCmdShow);
    UpdateWindow(window);

    //process messages
    MSG message;
    while(GetMessage(&amp;message, NULL, 0, 0))
    {
        TranslateMessage(&amp;message);
        DispatchMessage(&amp;message);
    }

    return message.wParam;
}

LRESULT CALLBACK windowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
    switch(message)
    {
        //window creation
        case WM_CREATE:
        {

            //set timer to get the pixel color
            if(!SetTimer(hwnd, timer, interval, NULL))
                return 0;

        }break;
        //timer
        case WM_TIMER:
        {
             if(GetAsyncKeyState(0x61))
             {
             KillTimer(hwnd, timer);
             PostQuitMessage(0);
             return 0;
             }

            InvalidateRect(hwnd, NULL, true);

        }break;
        //repaint
        case WM_PAINT:
        {
            //get the window device context for drawing
            PAINTSTRUCT ps;
            HDC windowDC;
            windowDC = BeginPaint(hwnd, &amp;ps);
////////////////////////////////////////////////////////////////////////////////////

           LoadBMPIntoDC(windowDC); 

////////////////////////////////////////////////////////////////////////////////////

           FindPixelred1(windowDC);

////////////////////////////////////////////////////////////////////////////////////

          /* keybd_event(0x2c, 0, 0, 0);
           keybd_event(0x2c,0, KEYEVENTF_KEYUP,0); 
           Sleep(100);*/

           ReleaseDC ( hwnd, windowDC );             // release dc 

            DeleteDC(windowDC);

            EndPaint(hwnd, &amp;ps);
        }break;
        case WM_DESTROY:
        {

            KillTimer(hwnd, timer);
            PostQuitMessage(0);
            return 0;
        }break;
    }

    return DefWindowProc(hwnd, message, wParam, lParam);
}
</code></pre>
<p>Viel Spaß!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2230485</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2230485</guid><dc:creator><![CDATA[masterslavemaster]]></dc:creator><pubDate>Thu, 05 Jul 2012 21:40:36 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit RGBQUAD-Variable! Wert wird nicht richtig erkannt! on Thu, 05 Jul 2012 22:04:22 GMT]]></title><description><![CDATA[<p>masterslavemaster schrieb:</p>
<blockquote>
<p>Viel Spaß!</p>
</blockquote>
<p>Willst du mich verarschen?<br />
Sowas lass ich mir doch nicht gefallen, ich klink mich aus...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2230490</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2230490</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Thu, 05 Jul 2012 22:04:22 GMT</pubDate></item><item><title><![CDATA[Reply to Problem mit RGBQUAD-Variable! Wert wird nicht richtig erkannt! on Thu, 05 Jul 2012 22:50:13 GMT]]></title><description><![CDATA[<p>masterslavemaster schrieb:</p>
<blockquote>
<p>Codamieren</p>
</blockquote>
<p>Das Wort gibt's nicht.</p>
<blockquote>
<p>EIN KLEINER HINWEIS WÄRE NICHT SCHLECHT!</p>
</blockquote>
<p>Hinweis: die Fehlerbeschreibung ist zu wirr. Der Beispielcode ist zu lange. Dein Auftreten hier ist zu &quot;so und jetzt helft mir mal schön&quot;. Die erfundenen Wörter helfen auch nicht.</p>
<p>Vielen Dank!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2230493</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2230493</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Thu, 05 Jul 2012 22:50:13 GMT</pubDate></item></channel></rss>