<?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[Projekt ohne Socket Unterstützung]]></title><description><![CDATA[<p>ich habe eine Projekt erstellt aber ohne Socket Unterstützung. wie kann ich nachträglich einbauen ohne ein neues projekt zu erstellen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/147223/projekt-ohne-socket-unterstützung</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 19:49:37 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/147223.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 15 May 2006 12:00:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Projekt ohne Socket Unterstützung on Mon, 15 May 2006 12:00:15 GMT]]></title><description><![CDATA[<p>ich habe eine Projekt erstellt aber ohne Socket Unterstützung. wie kann ich nachträglich einbauen ohne ein neues projekt zu erstellen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058060</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058060</guid><dc:creator><![CDATA[CPP_Dau]]></dc:creator><pubDate>Mon, 15 May 2006 12:00:15 GMT</pubDate></item><item><title><![CDATA[Reply to Projekt ohne Socket Unterstützung on Mon, 15 May 2006 15:52:36 GMT]]></title><description><![CDATA[<p>neues Projekt erstellen, mit Sockets.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058289</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058289</guid><dc:creator><![CDATA[Morides]]></dc:creator><pubDate>Mon, 15 May 2006 15:52:36 GMT</pubDate></item><item><title><![CDATA[Reply to Projekt ohne Socket Unterstützung on Mon, 15 May 2006 16:12:49 GMT]]></title><description><![CDATA[<p>Trage in der StdAfx.h folgendes ein:</p>
<pre><code class="language-cpp">#include &lt;afxsock.h&gt;		// MFC-Socket-Erweiterungen
</code></pre>
<p>Und in der InitInstance deiner Anwendung dies</p>
<pre><code class="language-cpp">if (!AfxSocketInit())
	{
		AfxMessageBox(&quot;Fehler beim Initialisieren der Windows-Sockets.&quot;);
		return FALSE;
	}
</code></pre>
<p>Das sollte es dann eigentlich gewesen sein <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/1058306</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058306</guid><dc:creator><![CDATA[guenni81]]></dc:creator><pubDate>Mon, 15 May 2006 16:12:49 GMT</pubDate></item><item><title><![CDATA[Reply to Projekt ohne Socket Unterstützung on Mon, 15 May 2006 16:15:25 GMT]]></title><description><![CDATA[<p>ok</p>
<pre><code class="language-cpp">#include &lt;afxsock.h&gt;        // MFC-Socket-Erweiterungen
</code></pre>
<p>habe ich drin aber</p>
<pre><code class="language-cpp">AfxSocketInit()
</code></pre>
<p>habe ich nicht, muss ich zuhause testen, bin grade unterwegs</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1058308</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1058308</guid><dc:creator><![CDATA[CPP_Dau]]></dc:creator><pubDate>Mon, 15 May 2006 16:15:25 GMT</pubDate></item></channel></rss>