Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Fehler???

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 < [ 2 ]
000
30.08.2004, 18:48 Uhr
~bonanza
Gast


was ist falsch an diesem Qcode???



C++:
#include <windows.h>
#include <conio.h>
#include <iostream>
using namespace std;
//#pragma comment(lib,"ws2_32.lib")  // für MSV C++

int main()
{
char hostname(255);
char *szIPAddress;
WORD wVer;
WSADATA wData;
PHOSTENT hostinfo;
wVer = MAKEWORD( 2, 0 );

if ( WSAStartup( wVer, &wData ) == 0 )
{
  if( gethostname ( hostname, sizeof(hostname)) == 0)
  {
   if((hostinfo = gethostbyname(hostname)) != NULL)
   {
    szIPAddress = inet_ntoa (*(struct in_addr *)*hostinfo->h_addr_list);
   }
  }
WSACleanup();
}

  cout<<szIPAddress<<endl;
  getch();
  return 0;
}
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
30.08.2004, 18:56 Uhr
Windalf
Der wo fast so viele Posts wie FloSoft...
(Operator)


auf jeden fall wird eine statisches chararray so definiert

C++:
char hostname[255];// und nicht so char hostname(255);


--
...fleißig wie zwei Weißbrote
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
30.08.2004, 20:16 Uhr
~bonanza
Gast


ja ok, aber das behebt die komischen fehler nicht
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
31.08.2004, 10:58 Uhr
RedEagle



Was denn für Fehler??
--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
004
31.08.2004, 12:14 Uhr
~bonanza
Gast


1.
[Linker error] undefined reference to `WSAStartup@8'

2.
[Linker error] undefined reference to `gethostname@8'

3.
[Linker error] undefined reference to `gethostbyname@4'

4.
[Linker error] undefined reference to `inet_ntoa@4'

5.
[Linker error] undefined reference to `WSACleanup@0'
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
005
31.08.2004, 13:19 Uhr
RedEagle



Hört sich an, als wenn ne lib fehlen würde

wenn du VC++ hast:

C++:
#pragma comment(lib,"ws2_32.lib")  // für MSV C++


(also die "//" weglassen)

Wenn du DEV-CPP hast:
unter Projektoptionen die Lib mit Linken
--
MFG RedEagle
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
006
31.08.2004, 13:32 Uhr
(un)wissender
Niveauwart


Das mit dem pragma ist Mist, da nicht portabel!
Libs gehören zu den Linkeroptionen.
--
Wer früher stirbt ist länger tot.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
007
31.08.2004, 15:34 Uhr
~bonanza
Gast


ich hab Dev-C++ aber wie kann ich das da einstellen die unter Projekt und dann Projektoptionen ?? (Projekt Optionen ist aber grau und nicht naklicktbar)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
008
31.08.2004, 15:36 Uhr
~bonanza
Gast


und wenn ich das mit VC++ mache kommen keine Fehler dann sagt der "Cannot execute Programm"
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
009
31.08.2004, 15:39 Uhr
~bonanza
Gast


doch das mit dem anklicken funzt doch hab mich vertan aber was genau muss ich da einstellen?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 < [ 2 ]     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: