<?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[Winsock Problem]]></title><description><![CDATA[<p>Hallo ich habe folgenden Code um eine Winsock Anfage auszuführen und die Antwort abzufangen, bekomme aber eim compilieren immer den Fehler:</p>
<p>Warning W8075 clientSy.c 22: Suspicious pointer conversion in function DoRequest<br />
Error E2342 clientSy.c 33: Type mismatch in parameter 'buf' (wanted 'signed char *', got 'answer') in function DoRequest<br />
Warning W8066 clientSy.c 39: Unreachable code in function DoRequest<br />
*** 1 errors in Compile ***</p>
<p>Woran kann das liegen? (davor und danach kommt natürlich noch mehr code für die winsocks)</p>
<pre><code>struct answer *DoRequest(struct request *req) {

   int timeout;
   int retlen;
   int recvcc;
   int fromlen;

  /* Send a message from a socket */  

/**********************************************************/
/***      Erzeuge Socket mit Internet-Adressformat,     ***/
/*** verbindungsloser Dienst und mit Internet-Protokoll ***/
/**********************************************************/

  s = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);

/**********************************************/
/*** Schreibe in das Socket die Anfrage req ***/
/**********************************************/

  connect(s, (struct sockaddr *)&amp;remote, sizeof(remote));
  send(s,req,sizeof(struct request),0);

  /* Receive a message from a socket */

  while (1)
  {

/****************************************************************/
/*** Lese die Antwort vom Socket und speichere sie in answ ab ***/
/****************************************************************/

  recv(s,answ,sizeof(struct request),0);

    {
      printf (&quot;error recvfrom&quot;);
      return(0);
    };
      break;
  }

  /* Delete a descriptor */

/************************/
/*** Schliesse Socket ***/
/************************/

  closesocket(s);
  return(&amp;answ);
};
</code></pre>
<p>struct request sieht so aus:</p>
<pre><code>struct request {
	unsigned char  ReqType;	
#define ReqNone 0
#define ReqBook 'B'
#define ReqStorn 'S'
	unsigned       FlNr;	/* Flight Number */
	unsigned       SeNr;	/* Seat Number (== 0) no Special Seat */
	char           name[32];
	struct ExpSeat SeatWanted;	/* Type of Seat wanted */
};
</code></pre>
<p>struct answer sieht so aus</p>
<pre><code>struct answer {
	unsigned char AnswType;
#define AnswNone 0
#define AnswOk   'O'
#define AnswWarn 'W'	/* example: Seat not available */
#define AnswErr  0xFF
	unsigned       FlNr;
	unsigned   SeNo;
#define ErrNo SeNo	/* Are identical */
};
</code></pre>
<p>Danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/183657/winsock-problem</link><generator>RSS for Node</generator><lastBuildDate>Wed, 23 Sep 2026 10:28:39 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/183657.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 07 Jun 2007 08:56:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 09:10:11 GMT]]></title><description><![CDATA[<p>Hallo ich habe folgenden Code um eine Winsock Anfage auszuführen und die Antwort abzufangen, bekomme aber eim compilieren immer den Fehler:</p>
<p>Warning W8075 clientSy.c 22: Suspicious pointer conversion in function DoRequest<br />
Error E2342 clientSy.c 33: Type mismatch in parameter 'buf' (wanted 'signed char *', got 'answer') in function DoRequest<br />
Warning W8066 clientSy.c 39: Unreachable code in function DoRequest<br />
*** 1 errors in Compile ***</p>
<p>Woran kann das liegen? (davor und danach kommt natürlich noch mehr code für die winsocks)</p>
<pre><code>struct answer *DoRequest(struct request *req) {

   int timeout;
   int retlen;
   int recvcc;
   int fromlen;

  /* Send a message from a socket */  

/**********************************************************/
/***      Erzeuge Socket mit Internet-Adressformat,     ***/
/*** verbindungsloser Dienst und mit Internet-Protokoll ***/
/**********************************************************/

  s = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);

/**********************************************/
/*** Schreibe in das Socket die Anfrage req ***/
/**********************************************/

  connect(s, (struct sockaddr *)&amp;remote, sizeof(remote));
  send(s,req,sizeof(struct request),0);

  /* Receive a message from a socket */

  while (1)
  {

/****************************************************************/
/*** Lese die Antwort vom Socket und speichere sie in answ ab ***/
/****************************************************************/

  recv(s,answ,sizeof(struct request),0);

    {
      printf (&quot;error recvfrom&quot;);
      return(0);
    };
      break;
  }

  /* Delete a descriptor */

/************************/
/*** Schliesse Socket ***/
/************************/

  closesocket(s);
  return(&amp;answ);
};
</code></pre>
<p>struct request sieht so aus:</p>
<pre><code>struct request {
	unsigned char  ReqType;	
#define ReqNone 0
#define ReqBook 'B'
#define ReqStorn 'S'
	unsigned       FlNr;	/* Flight Number */
	unsigned       SeNr;	/* Seat Number (== 0) no Special Seat */
	char           name[32];
	struct ExpSeat SeatWanted;	/* Type of Seat wanted */
};
</code></pre>
<p>struct answer sieht so aus</p>
<pre><code>struct answer {
	unsigned char AnswType;
#define AnswNone 0
#define AnswOk   'O'
#define AnswWarn 'W'	/* example: Seat not available */
#define AnswErr  0xFF
	unsigned       FlNr;
	unsigned   SeNo;
#define ErrNo SeNo	/* Are identical */
};
</code></pre>
<p>Danke!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300543</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300543</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Thu, 07 Jun 2007 09:10:11 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 09:55:07 GMT]]></title><description><![CDATA[<p>Das ist ja gar kein Funktionszeiger, Mist ich glaub ich brauch ne Brille.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300565</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300565</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 09:55:07 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 09:48:48 GMT]]></title><description><![CDATA[<p>Hallo ich habe es jetzt korrigiert aer bekomme immer noch folgende Fehlermeldung. Woran liegt das?</p>
<p>clientSy.c:<br />
Warning W8066 clientSy.c 38: Unreachable code in function DoRequest<br />
Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland<br />
Error: Unresolved external '_main' referenced from C:\BORLAND\BCC55\LIB\C0X32.OB<br />
J</p>
<pre><code>struct answer *DoRequest(struct request *req) {

   int timeout;
   int retlen;
   int recvcc;
   int fromlen;

  /* Send a message from a socket */  

/**********************************************************/
/***      Erzeuge Socket mit Internet-Adressformat,     ***/
/*** verbindungsloser Dienst und mit Internet-Protokoll ***/
/**********************************************************/

  s = socket(AF_INET,SOCK_STREAM,IPPROTO_TCP);

/**********************************************/
/*** Schreibe in das Socket die Anfrage req ***/
/**********************************************/

  connect(s, (struct sockaddr *)&amp;remote, sizeof(remote));
  send(s,(unsigned char *)&amp;req,sizeof(struct request),0);

  /* Receive a message from a socket */

  while (1){

/****************************************************************/
/*** Lese die Antwort vom Socket und speichere sie in answ ab ***/
/****************************************************************/

    recv(s,(unsigned char *)&amp;answ,sizeof(struct answer),0);

    {
      printf (&quot;error recvfrom&quot;);
      return(0);
    };
      break;
  }

  /* Delete a descriptor */

/************************/
/*** Schliesse Socket ***/
/************************/

  closesocket(s);
  return(&amp;answ);
};
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1300570</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300570</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Thu, 07 Jun 2007 09:48:48 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 09:56:23 GMT]]></title><description><![CDATA[<p>Hast du ein main() Programm ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300576</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300576</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 09:56:23 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 10:00:52 GMT]]></title><description><![CDATA[<p>Das ist auch nicht so der Hit: (unsigned char *)&amp;answ</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300579</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300579</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 10:00:52 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 10:04:04 GMT]]></title><description><![CDATA[<p>Wie wäre es denn besser?</p>
<p>die main funktion ist in einer anderen datei (client.c)</p>
<pre><code>...
main(int argc, char *argv[])
{
  struct request     req;
  struct answer     *answPtr;
  long    time,i;
  unsigned    repeat=1;

  struct  time  start_usr, stop_usr;    
  clock_t start_cpu, stop_cpu;          
  float	f_start_usr, f_stop_usr;

  start_cpu = stop_cpu = 0;
  f_start_usr=f_stop_usr = 0.0;

  initClient(argv[1]);
  for (;;) {
    switch (menu()) {
    case 'b' :
    case 'B' :
        req.ReqType = ReqBook;

        fillRequest(&amp;req);
        break;
    case 's' :
    case 'S' :
        req.ReqType = ReqStorn;

        fillRequest(&amp;req);
        break;
    case 'w' :
    case 'W' :
        printf(&quot;Faktor = &quot;);
        scanf(&quot;%u&quot;,&amp;repeat);
        continue;
    case 'e' :
    case 'E' :
        closeClient();
        exit(0);
    }

    gettime(&amp;start_usr); /* Start timing */
    start_cpu=clock();

    for (i=0;i&lt;repeat;i++) {
      answPtr = DoRequest(&amp;req);
      printAnswer(answPtr);

    }

    gettime(&amp;stop_usr); /* Stop timing */
    stop_cpu=clock();

    f_start_usr=SEC_HOUR*start_usr.ti_hour+SEC_MIN*start_usr.ti_min+start_usr.ti_sec+((float)start_usr.ti_hund)/100.0;
    f_stop_usr=SEC_HOUR*stop_usr.ti_hour+SEC_MIN*stop_usr.ti_min+stop_usr.ti_sec+((float)stop_usr.ti_hund)/100.0;

    printf(&quot;user time (s) : %10.2f\n&quot;,(f_stop_usr-f_start_usr));
    printf(&quot;sys  time (s) : %10.5f\n&quot;,(stop_cpu-start_cpu)/CLK_TCK);
  }
};
...
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1300583</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300583</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Thu, 07 Jun 2007 10:04:04 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 10:07:39 GMT]]></title><description><![CDATA[<p>Ich frag halt nach, weil dein Compiler scheinbar die main Funktion nicht finden kann.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300587</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300587</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 10:07:39 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 10:17:52 GMT]]></title><description><![CDATA[<p>das wundert mich auch.. ich habe zwei dateien eine client.c und eine clientsy.c und die main ist in der client.c</p>
<p>Beide includieren eine clientSy.h mit folgendem Inhalt</p>
<pre><code>/*clientSy.h - Win32 Konsole Version */

extern void initClient();

extern struct answer *DoRequest();

extern void closeClient();
</code></pre>
<p>und eine data.h mit folgendem Inhalt:</p>
<pre><code>/* Data Declarations for Praktikum          */
/* used by C and C++ !                      */
/* Only Data concerning Client and Server ! */

extern char *errorTable[];

struct ExpSeat {
	unsigned SmokeDontCare  : 1; /* If DontCare == 1 Smoker is not used */
	unsigned Smoker         : 1;
	unsigned WindowDontCare : 1;
	unsigned Window         : 1;
};

struct request {
	unsigned char  ReqType;	
#define ReqNone 0
#define ReqBook 'B'
#define ReqStorn 'S'
	unsigned       FlNr;	/* Flight Number */
	unsigned       SeNr;	/* Seat Number (== 0) no Special Seat */
	char           name[32];
	struct ExpSeat SeatWanted;	/* Type of Seat wanted */
};

struct answer {
	unsigned char AnswType;
#define AnswNone 0
#define AnswOk   'O'
#define AnswWarn 'W'	/* example: Seat not available */
#define AnswErr  0xFF
	unsigned       FlNr;
	unsigned   SeNo;
#define ErrNo SeNo	/* Are identical */
};
</code></pre>
<p>Fehlt vielleicht irgedwo ein include oder Ähnliches?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300598</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300598</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Thu, 07 Jun 2007 10:17:52 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 10:30:21 GMT]]></title><description><![CDATA[<p>Kenne mich mit dem Borland compiler nicht aus, aber es könnte sein, das du versuchst ein Windows Programm als Konsolenprogramm zu kompilieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300609</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300609</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 10:30:21 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 10:36:31 GMT]]></title><description><![CDATA[<p>Du könntest erstmal alles rausschmeissen, bis auf eine Datei.<br />
In der sollte nur:</p>
<pre><code class="language-cpp">int main()
{
return 0;
}
</code></pre>
<p>stehen.<br />
Wenn das klappt, sich also ohne Fehler compilieren lässt, dann hast du schon gute Karten. Dann fügst du Stück für Stück die anderen Klammoten ein und guckst wo der Compiler meckert.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300616</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300616</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 10:36:31 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 10:56:36 GMT]]></title><description><![CDATA[<p>Hallo, ich denke ich habe den Fehler ein bisschen eingegrenzt. Ich habe vergessen zu erwähnen das ich auch noch eine Datei habe die client_conn.mak heißt.</p>
<p>Das ganze Projekt ist auch ein Konsolenprojekt.</p>
<p>Hat jemand eine idee wie ich die kompiliere?</p>
<p>Das kleine Testprogramm lässt sich ohne Probleme erstellen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300631</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300631</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Thu, 07 Jun 2007 10:56:36 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 11:05:20 GMT]]></title><description><![CDATA[<p>Wo hastn die her, Kumpel, Internet ?<br />
Normalerweise gibts bei solchen Bündeln noch ne Readme Datei mit Build-Instructions.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300636</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300636</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 11:05:20 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 11:21:10 GMT]]></title><description><![CDATA[<p>Ist ne Aufgabe fürn Praktikum in der Uni. Leider keine weitere Doku außer Seite 13 und 14 von hier:</p>
<p><a href="http://www.rn.inf.tu-dresden.de/lectures/komplex/Socket-Versuch/SOCKET.pdf" rel="nofollow">http://www.rn.inf.tu-dresden.de/lectures/komplex/Socket-Versuch/SOCKET.pdf</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300646</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300646</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Thu, 07 Jun 2007 11:21:10 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 11:28:00 GMT]]></title><description><![CDATA[<p>Hab keinen Account für die Uni.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300653</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300653</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 11:28:00 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 11:59:40 GMT]]></title><description><![CDATA[<p>das pdf solltest du aber trotzdem öffnen können... bei mir klappt es auch von zu Hause ohne account</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300680</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300680</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Thu, 07 Jun 2007 11:59:40 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 12:10:47 GMT]]></title><description><![CDATA[<p>Ja, hast Recht, das geht. Wollte die runterladen, weil sich mein Browser gern aufhängt bei PDFs und da kommt nen forbidden.</p>
<p>Naja, dann willst du also die Linuxversion compilieren ?<br />
Das steht unter 4.1 Versuchsbeschreibung... make eintippen und so..guck nochmal nach.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300689</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300689</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 12:10:47 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 13:39:50 GMT]]></title><description><![CDATA[<p>nein, ich habe die windows version für boarland runtergeladen. da sind aber auch *.mak dateien dabei...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300751</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300751</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Thu, 07 Jun 2007 13:39:50 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Thu, 07 Jun 2007 20:50:45 GMT]]></title><description><![CDATA[<p>Tja, also ich hab den Borland Compiler nicht, ist da auch ne Version für das Visual Studio dabei, dann könnt ich probieren das zum Laufen zu kriegen.<br />
Vielleicht hast du auch nen Komilitonen der das schon geschafft hat und dir hilft ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1300990</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1300990</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Thu, 07 Jun 2007 20:50:45 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Fri, 08 Jun 2007 05:54:06 GMT]]></title><description><![CDATA[<p>Hallo,<br />
erstmal danke für deine Hilfe! Wäre echt super wenn du das hinbekommen würdest!</p>
<p>Die Version für Visual ist hier:<br />
<a href="http://www.rn.inf.tu-dresden.de/lectures/komplex/Socket-Versuch/versuch_visual.zip" rel="nofollow">http://www.rn.inf.tu-dresden.de/lectures/komplex/Socket-Versuch/versuch_visual.zip</a></p>
<p>Wenn dir Linux /Unix lieber ist dann ist die Version hier die richtige:<br />
<a href="http://www.rn.inf.tu-dresden.de/lectures/komplex/Socket-Versuch/versuch.tgz" rel="nofollow">http://www.rn.inf.tu-dresden.de/lectures/komplex/Socket-Versuch/versuch.tgz</a></p>
<p>Danke für die Hilfe! Meine Kommilitonen haben leider auch alle nicht so die Ahnung.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1301057</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1301057</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Fri, 08 Jun 2007 05:54:06 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Fri, 08 Jun 2007 08:28:14 GMT]]></title><description><![CDATA[<p>Naja, die Visual Version lässt sich problemlos übersetzen.</p>
<p>Die Borland-Version wird wohl auch in ordnung sein, ich nehme an du machst etwas beim Übersetzen falsch.</p>
<p>Öffnest du das Projekt auch über die Projektdatei oder kompilierst du die Dateien einfach so ? Das könnte nämlich der Fehler sein.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1301118</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1301118</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Fri, 08 Jun 2007 08:28:14 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Fri, 08 Jun 2007 09:39:41 GMT]]></title><description><![CDATA[<p>Hallo, ich habe leider nur den komandozeilen compiler von borland (bcc32). Hast du da eine idee?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1301161</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1301161</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Fri, 08 Jun 2007 09:39:41 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Fri, 08 Jun 2007 10:04:24 GMT]]></title><description><![CDATA[<p>Hi !<br />
Du könntest dich schlau machen, wie man *.exe Dateien mir der Borland Kommandozeilenversion erstellt<br />
<a href="http://www.opussoftware.com/tutorial/TutMakefile.htm" rel="nofollow">http://www.opussoftware.com/tutorial/TutMakefile.htm</a></p>
<p>Ob Borland eine kostenlose Entwicklungsumgebung anbietet weiss ich nicht.</p>
<p>Oder du versuchst es mit der Entwicklungsumgebung von Microsoft<br />
<a href="http://www.microsoft.com/germany/msdn/vstudio/products/express/download.mspx" rel="nofollow">http://www.microsoft.com/germany/msdn/vstudio/products/express/download.mspx</a></p>
<p>Oder sattelst um auf Linux, da ist Compiler, Entwicklungsumgebungen alles von Haus aus dabei.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1301176</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1301176</guid><dc:creator><![CDATA[proggingmania]]></dc:creator><pubDate>Fri, 08 Jun 2007 10:04:24 GMT</pubDate></item><item><title><![CDATA[Reply to Winsock Problem on Fri, 08 Jun 2007 15:15:43 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich werde es mal mit Visual Studio versuchen. Danke für den Link!</p>
<p>Schönes Wochenende noch,</p>
<p>Andreas</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1301406</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1301406</guid><dc:creator><![CDATA[andjanbru]]></dc:creator><pubDate>Fri, 08 Jun 2007 15:15:43 GMT</pubDate></item></channel></rss>