<?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[error LNK2019]]></title><description><![CDATA[<p>Hallo zusammen,<br />
also ich weiß, dass jetzt bestimmt einige wieder tief seufzen und sich denken, noch so'n Anfänger! Aber ich hab mich jetzt schon den ganzen Tag durch sämtliche Websites und Foren gelesen, und auch die MSDN studiert! Aber ich finde meinen Fehler nicht! Hier mal mein Code :</p>
<p>// ----------------------------------------------------------------------------<br />
#include &lt;windows.h&gt;<br />
#include &lt;commdlg.h&gt;<br />
#include &lt;stdio.h&gt;</p>
<p>// Anwendungsfenster erzeugen<br />
HWND CreateMainWindow(HINSTANCE hInstance);</p>
<p>// Callback Funktion zur Nachrichtenbehandlung<br />
LRESULT CALLBACK MessageHandler(HWND hWnd, UINT msg, WPARAM wparam, LPARAM lparam);</p>
<p>// Das Fensterhandle<br />
HWND hWnd = 0;</p>
<p>//Main-Funktion<br />
int WINAPI WinMain( HINSTANCE hInstance,<br />
HINSTANCE hPrevInstance,<br />
LPSTR lpCmdLine,<br />
int nCmdShow )<br />
{<br />
hWnd = CreateMainWindow(hInstance);</p>
<p>// Wenn der Rueckgabewert 0 ist, ist ein Fehler aufgetreten<br />
if(0 == hWnd)<br />
{<br />
MessageBox(0, &quot;Fenster konnte nicht erzeugt werden&quot;, &quot;Fehler&quot;, MB_OK);<br />
return 0;<br />
}</p>
<p>// Struktur, in der Informationen zur Nachricht gespeichert werden<br />
MSG msg;</p>
<p>// Diese Schleife laeuft bis die Nachricht WM_QUIT empfangen wird<br />
while(GetMessage(&amp;msg, NULL, 0, 0))<br />
{<br />
// Nachricht an die Callbackfunktion senden<br />
TranslateMessage(&amp;msg); // F1 o F2<br />
DispatchMessage(&amp;msg);<br />
}</p>
<p>ShowWindow(hWnd, nCmdShow);<br />
UpdateWindow(hWnd);</p>
<p>return 0;<br />
}</p>
<p>HWND CreateMainWindow(HINSTANCE hInstance)<br />
{<br />
WNDCLASSEX wndClass =<br />
{<br />
sizeof(WNDCLASSEX),<br />
CS_DBLCLKS | CS_OWNDC | CS_HREDRAW | CS_VREDRAW, //STYLE<br />
MessageHandler, //Callback<br />
0, //Speicher reservieren<br />
0, // - &quot; -<br />
hInstance, //Parameter WinMain()<br />
LoadIcon(NULL, IDI_WINLOGO), //Icon<br />
LoadCursor(NULL, IDC_ARROW), //Maus<br />
(HBRUSH)COLOR_WINDOW, //Hintergrundfarbe<br />
NULL, // Menu ode nicht?<br />
&quot;WindowClass&quot;, //Name der Klasse<br />
LoadIcon(NULL, IDI_WINLOGO) //Icon Titelleiste<br />
};</p>
<p>RegisterClassEx(&amp;wndClass);</p>
<p>return CreateWindowEx(<br />
WS_EX_ACCEPTFILES, //erweitere Fensterstile<br />
&quot;WindowClass&quot;, //Klassenname<br />
&quot;Test&quot;, // Titelleiste<br />
WS_OVERLAPPEDWINDOW | WS_VISIBLE, //Art des Fensters<br />
15, 15, //Koordinaten<br />
1000, 700, //GroeÃƒÅ¸e<br />
NULL, //Fensterhanlde des Parent<br />
NULL, //Menu ?<br />
hInstance, //Instanz der Anwendung<br />
NULL //MIDI ?<br />
);</p>
<p>}</p>
<p>// Diese Funktion wird von Windows aufgrufen, wenn eine Nachricht<br />
// fuer Ihr Programm vorliegt<br />
LRESULT CALLBACK MessageHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)<br />
{<br />
HMENU hMenu, hSubMenu;<br />
POINT point;<br />
int iAuswahl;<br />
char szText[64];</p>
<p>// testen, um welche Nachticht es sich handelt<br />
switch(msg)<br />
{<br />
// wenn das Fenster geschlossen wird, eine Nachricht senden,<br />
// die das Programm beendet<br />
case WM_CREATE:</p>
<p>hMenu = CreateMenu();</p>
<p>hSubMenu = CreatePopupMenu();<br />
AppendMenu(hSubMenu, MF_STRING, 101,&quot;&amp;Daten einlesen&quot;);<br />
AppendMenu(hSubMenu, MF_STRING, 102,&quot;&amp;Daten speichern&quot;);<br />
AppendMenu(hSubMenu,MF_SEPARATOR,0,0);<br />
AppendMenu(hSubMenu, MF_STRING, 103,&quot;&amp;Beenden&quot;);<br />
AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, &quot;&amp;Menu&quot;);</p>
<p>hSubMenu = CreatePopupMenu();<br />
AppendMenu(hSubMenu, MF_STRING,201, &quot;&amp;Laktat - IAS Bestimmung&quot;);<br />
AppendMenu(hSubMenu, MF_STRING,202, &quot;&amp;Bestimmung der Ventialtorischen Schwellen&quot;);<br />
AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, &quot;&amp;Auswertungs - Mehtoden&quot;);</p>
<p>hSubMenu = CreatePopupMenu();<br />
AppendMenu(hSubMenu, MF_STRING,301, &quot;&amp;Programm&quot;);<br />
AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, &quot;&amp;Hilfe&quot;);</p>
<p>SetMenu(hWnd, hMenu);<br />
return 0 ;</p>
<p>case WM_COMMAND:<br />
switch (LOWORD(wParam))<br />
{<br />
case 101:<br />
OPENFILENAME ofn; // common dialog box structure<br />
char szFile[260]; // buffer for file name<br />
HWND hWnd; // owner window<br />
HANDLE hf; // file handle</p>
<p>// Initialize OPENFILENAME<br />
ZeroMemory(&amp;ofn, sizeof(ofn));<br />
ofn.lStructSize = sizeof(ofn);<br />
ofn.hwndOwner = hWnd;<br />
ofn.lpstrFile = szFile;<br />
//<br />
// Set lpstrFile[0] to '\0' so that GetOpenFileName does not<br />
// use the contents of szFile to initialize itself.<br />
//<br />
ofn.lpstrFile[0] = '\0';<br />
ofn.nMaxFile = sizeof(szFile);<br />
ofn.lpstrFilter = &quot;All\0*.<em>\0Text\0</em>.TXT\0&quot;;<br />
ofn.nFilterIndex = 1;<br />
ofn.lpstrFileTitle = NULL;<br />
ofn.nMaxFileTitle = 0;<br />
ofn.lpstrInitialDir = NULL;<br />
ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;</p>
<p>// Display the Open dialog box.</p>
<p>if (GetOpenFileName(&amp;ofn)==TRUE)<br />
hf = CreateFile(ofn.lpstrFile, GENERIC_READ,<br />
0, (LPSECURITY_ATTRIBUTES) NULL,<br />
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL,<br />
(HANDLE) NULL);<br />
break;<br />
}<br />
return 0;<br />
break;</p>
<p>case WM_DESTROY:<br />
PostQuitMessage(0);<br />
//DestroyMenu(hMenu);<br />
return 0;<br />
break;<br />
}</p>
<p>// Wenn wir uns nicht um die Nachricht gekuemmert haben<br />
// wird sie an die Standardnachrichtenverarbeitung von Windows<br />
// geschickt<br />
return DefWindowProc(hWnd, msg, wParam, lParam);<br />
}</p>
<p>// ----------------------------------------------------------------------------</p>
<p>Und der Fehler:</p>
<p>main.obj : error LNK2019: unresolved external symbol __imp__GetOpenFileNameA@4 referenced in function &quot;long __stdcall MessageHandler(struct HWND__ *,unsigned int,unsigned int,long)&quot; (?MessageHandler@@YGJPAUHWND__@@IIJ@Z)<br />
Laktat.exe : fatal error LNK1120: 1 unresolved externals</p>
<p>Hab mich auch schon nach dem fehler umgeschaut, aber die FileOpen.lib müsste doch mit der commdlg.h mit eingebunden werden ?</p>
<p>Bitte helft mir !!!<br />
VIELEN DANK</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/165142/error-lnk2019</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Apr 2026 04:05:19 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/165142.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 15 Nov 2006 21:46:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to error LNK2019 on Wed, 15 Nov 2006 21:46:09 GMT]]></title><description><![CDATA[<p>Hallo zusammen,<br />
also ich weiß, dass jetzt bestimmt einige wieder tief seufzen und sich denken, noch so'n Anfänger! Aber ich hab mich jetzt schon den ganzen Tag durch sämtliche Websites und Foren gelesen, und auch die MSDN studiert! Aber ich finde meinen Fehler nicht! Hier mal mein Code :</p>
<p>// ----------------------------------------------------------------------------<br />
#include &lt;windows.h&gt;<br />
#include &lt;commdlg.h&gt;<br />
#include &lt;stdio.h&gt;</p>
<p>// Anwendungsfenster erzeugen<br />
HWND CreateMainWindow(HINSTANCE hInstance);</p>
<p>// Callback Funktion zur Nachrichtenbehandlung<br />
LRESULT CALLBACK MessageHandler(HWND hWnd, UINT msg, WPARAM wparam, LPARAM lparam);</p>
<p>// Das Fensterhandle<br />
HWND hWnd = 0;</p>
<p>//Main-Funktion<br />
int WINAPI WinMain( HINSTANCE hInstance,<br />
HINSTANCE hPrevInstance,<br />
LPSTR lpCmdLine,<br />
int nCmdShow )<br />
{<br />
hWnd = CreateMainWindow(hInstance);</p>
<p>// Wenn der Rueckgabewert 0 ist, ist ein Fehler aufgetreten<br />
if(0 == hWnd)<br />
{<br />
MessageBox(0, &quot;Fenster konnte nicht erzeugt werden&quot;, &quot;Fehler&quot;, MB_OK);<br />
return 0;<br />
}</p>
<p>// Struktur, in der Informationen zur Nachricht gespeichert werden<br />
MSG msg;</p>
<p>// Diese Schleife laeuft bis die Nachricht WM_QUIT empfangen wird<br />
while(GetMessage(&amp;msg, NULL, 0, 0))<br />
{<br />
// Nachricht an die Callbackfunktion senden<br />
TranslateMessage(&amp;msg); // F1 o F2<br />
DispatchMessage(&amp;msg);<br />
}</p>
<p>ShowWindow(hWnd, nCmdShow);<br />
UpdateWindow(hWnd);</p>
<p>return 0;<br />
}</p>
<p>HWND CreateMainWindow(HINSTANCE hInstance)<br />
{<br />
WNDCLASSEX wndClass =<br />
{<br />
sizeof(WNDCLASSEX),<br />
CS_DBLCLKS | CS_OWNDC | CS_HREDRAW | CS_VREDRAW, //STYLE<br />
MessageHandler, //Callback<br />
0, //Speicher reservieren<br />
0, // - &quot; -<br />
hInstance, //Parameter WinMain()<br />
LoadIcon(NULL, IDI_WINLOGO), //Icon<br />
LoadCursor(NULL, IDC_ARROW), //Maus<br />
(HBRUSH)COLOR_WINDOW, //Hintergrundfarbe<br />
NULL, // Menu ode nicht?<br />
&quot;WindowClass&quot;, //Name der Klasse<br />
LoadIcon(NULL, IDI_WINLOGO) //Icon Titelleiste<br />
};</p>
<p>RegisterClassEx(&amp;wndClass);</p>
<p>return CreateWindowEx(<br />
WS_EX_ACCEPTFILES, //erweitere Fensterstile<br />
&quot;WindowClass&quot;, //Klassenname<br />
&quot;Test&quot;, // Titelleiste<br />
WS_OVERLAPPEDWINDOW | WS_VISIBLE, //Art des Fensters<br />
15, 15, //Koordinaten<br />
1000, 700, //GroeÃƒÅ¸e<br />
NULL, //Fensterhanlde des Parent<br />
NULL, //Menu ?<br />
hInstance, //Instanz der Anwendung<br />
NULL //MIDI ?<br />
);</p>
<p>}</p>
<p>// Diese Funktion wird von Windows aufgrufen, wenn eine Nachricht<br />
// fuer Ihr Programm vorliegt<br />
LRESULT CALLBACK MessageHandler(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)<br />
{<br />
HMENU hMenu, hSubMenu;<br />
POINT point;<br />
int iAuswahl;<br />
char szText[64];</p>
<p>// testen, um welche Nachticht es sich handelt<br />
switch(msg)<br />
{<br />
// wenn das Fenster geschlossen wird, eine Nachricht senden,<br />
// die das Programm beendet<br />
case WM_CREATE:</p>
<p>hMenu = CreateMenu();</p>
<p>hSubMenu = CreatePopupMenu();<br />
AppendMenu(hSubMenu, MF_STRING, 101,&quot;&amp;Daten einlesen&quot;);<br />
AppendMenu(hSubMenu, MF_STRING, 102,&quot;&amp;Daten speichern&quot;);<br />
AppendMenu(hSubMenu,MF_SEPARATOR,0,0);<br />
AppendMenu(hSubMenu, MF_STRING, 103,&quot;&amp;Beenden&quot;);<br />
AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, &quot;&amp;Menu&quot;);</p>
<p>hSubMenu = CreatePopupMenu();<br />
AppendMenu(hSubMenu, MF_STRING,201, &quot;&amp;Laktat - IAS Bestimmung&quot;);<br />
AppendMenu(hSubMenu, MF_STRING,202, &quot;&amp;Bestimmung der Ventialtorischen Schwellen&quot;);<br />
AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, &quot;&amp;Auswertungs - Mehtoden&quot;);</p>
<p>hSubMenu = CreatePopupMenu();<br />
AppendMenu(hSubMenu, MF_STRING,301, &quot;&amp;Programm&quot;);<br />
AppendMenu(hMenu, MF_STRING | MF_POPUP, (UINT)hSubMenu, &quot;&amp;Hilfe&quot;);</p>
<p>SetMenu(hWnd, hMenu);<br />
return 0 ;</p>
<p>case WM_COMMAND:<br />
switch (LOWORD(wParam))<br />
{<br />
case 101:<br />
OPENFILENAME ofn; // common dialog box structure<br />
char szFile[260]; // buffer for file name<br />
HWND hWnd; // owner window<br />
HANDLE hf; // file handle</p>
<p>// Initialize OPENFILENAME<br />
ZeroMemory(&amp;ofn, sizeof(ofn));<br />
ofn.lStructSize = sizeof(ofn);<br />
ofn.hwndOwner = hWnd;<br />
ofn.lpstrFile = szFile;<br />
//<br />
// Set lpstrFile[0] to '\0' so that GetOpenFileName does not<br />
// use the contents of szFile to initialize itself.<br />
//<br />
ofn.lpstrFile[0] = '\0';<br />
ofn.nMaxFile = sizeof(szFile);<br />
ofn.lpstrFilter = &quot;All\0*.<em>\0Text\0</em>.TXT\0&quot;;<br />
ofn.nFilterIndex = 1;<br />
ofn.lpstrFileTitle = NULL;<br />
ofn.nMaxFileTitle = 0;<br />
ofn.lpstrInitialDir = NULL;<br />
ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;</p>
<p>// Display the Open dialog box.</p>
<p>if (GetOpenFileName(&amp;ofn)==TRUE)<br />
hf = CreateFile(ofn.lpstrFile, GENERIC_READ,<br />
0, (LPSECURITY_ATTRIBUTES) NULL,<br />
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL,<br />
(HANDLE) NULL);<br />
break;<br />
}<br />
return 0;<br />
break;</p>
<p>case WM_DESTROY:<br />
PostQuitMessage(0);<br />
//DestroyMenu(hMenu);<br />
return 0;<br />
break;<br />
}</p>
<p>// Wenn wir uns nicht um die Nachricht gekuemmert haben<br />
// wird sie an die Standardnachrichtenverarbeitung von Windows<br />
// geschickt<br />
return DefWindowProc(hWnd, msg, wParam, lParam);<br />
}</p>
<p>// ----------------------------------------------------------------------------</p>
<p>Und der Fehler:</p>
<p>main.obj : error LNK2019: unresolved external symbol __imp__GetOpenFileNameA@4 referenced in function &quot;long __stdcall MessageHandler(struct HWND__ *,unsigned int,unsigned int,long)&quot; (?MessageHandler@@YGJPAUHWND__@@IIJ@Z)<br />
Laktat.exe : fatal error LNK1120: 1 unresolved externals</p>
<p>Hab mich auch schon nach dem fehler umgeschaut, aber die FileOpen.lib müsste doch mit der commdlg.h mit eingebunden werden ?</p>
<p>Bitte helft mir !!!<br />
VIELEN DANK</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175557</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175557</guid><dc:creator><![CDATA[fast Neuling]]></dc:creator><pubDate>Wed, 15 Nov 2006 21:46:09 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Wed, 15 Nov 2006 21:50:04 GMT]]></title><description><![CDATA[<p>fast Neuling schrieb:</p>
<blockquote>
<p>Hab mich auch schon nach dem fehler umgeschaut, aber die FileOpen.lib müsste doch mit der commdlg.h mit eingebunden werden ?</p>
</blockquote>
<p>Glaub nicht, oder haben die M$ jetzt ihr pragma zeugs schon überall reingedrüct.<br />
Füg die Lib halt mal beim Linker hinzu</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175560</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175560</guid><dc:creator><![CDATA[[ Profil ] [ Registrieren]]></dc:creator><pubDate>Wed, 15 Nov 2006 21:50:04 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Wed, 15 Nov 2006 22:02:12 GMT]]></title><description><![CDATA[<p>Habe jetzt meine gesamte Festplatte nach der Fileopen.lib durchsucht, und nichts gefunden! Habe Microsoft Visual C++ Toolkit 2003, Microsoft Platform SDK for Windows Server 2003 SP1 und benutze Code::Blocks. Und da ist sie anscheinend nicht dabei? Wo bekomme ich die Fileopen.lib her?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175563</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175563</guid><dc:creator><![CDATA[fast neuling]]></dc:creator><pubDate>Wed, 15 Nov 2006 22:02:12 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Wed, 15 Nov 2006 23:31:45 GMT]]></title><description><![CDATA[<p>Also, habe jetzt mal die OpenFile.dlg in den Linker eingefügt! In der müsste die OpenFile.dll enthalten sein, oder so ? Beim googlen findet man da nicht viel! Die oben genannten Fehlermeldungen sind weg, dafür hab ich jetzt ne neue :</p>
<p>LINK : fatal error LNK1181: cannot open input file 'C:\Programme\Microsoft.obj'</p>
<p>Bitte, kann mir denn hier niemand helfen? Ich bin echt am verzweifeln, da es anscheinend nicht an meinem Code liegt !!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175593</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175593</guid><dc:creator><![CDATA[fast Neuling]]></dc:creator><pubDate>Wed, 15 Nov 2006 23:31:45 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Thu, 16 Nov 2006 00:49:54 GMT]]></title><description><![CDATA[<p>Nimm halt die &quot;comdlg32.lib&quot; - weiss nicht wie du auf &quot;OpenFile.lib&quot; kommst <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/1175605</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175605</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Thu, 16 Nov 2006 00:49:54 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Thu, 16 Nov 2006 00:59:33 GMT]]></title><description><![CDATA[<p>mir der Comdlg32.dll bekomm ich wieder als Fehler:</p>
<p>LINK : fatal error LNK1181: cannot open input file 'C:\Programme\Microsoft.obj'</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1175607</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1175607</guid><dc:creator><![CDATA[fast Neuling]]></dc:creator><pubDate>Thu, 16 Nov 2006 00:59:33 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Thu, 16 Nov 2006 16:42:49 GMT]]></title><description><![CDATA[<p>Keine Ahnung was dann das Problem sein soll - hab noch nie so einen Fehler bekommen. Und du bist sicher dass CodeBlocks mit .lib Dateien im Microsoft Format was anfangen kann?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1176095</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1176095</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Thu, 16 Nov 2006 16:42:49 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Sun, 02 Dec 2007 20:16:05 GMT]]></title><description><![CDATA[<p>Ich habe dieses nervende Problem auch:<br />
<a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-199413.html" rel="nofollow">http://www.c-plusplus.net/forum/viewtopic-var-t-is-199413.html</a></p>
<p>Könnt ihr mir in meinem Fall weiterhelfen was soll ich machen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1413962</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1413962</guid><dc:creator><![CDATA[C-Chris]]></dc:creator><pubDate>Sun, 02 Dec 2007 20:16:05 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Wed, 27 Aug 2008 16:41:56 GMT]]></title><description><![CDATA[<p>pharmacy;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1572383</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1572383</guid><dc:creator><![CDATA[jtsfds324]]></dc:creator><pubDate>Wed, 27 Aug 2008 16:41:56 GMT</pubDate></item><item><title><![CDATA[Reply to error LNK2019 on Wed, 27 Aug 2008 17:46:36 GMT]]></title><description><![CDATA[<p>pharmacy;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1572473</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1572473</guid><dc:creator><![CDATA[jtsfds364]]></dc:creator><pubDate>Wed, 27 Aug 2008 17:46:36 GMT</pubDate></item></channel></rss>