![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
|
|
#1 |
|
Newbie
Join Date: Aug 2005
Posts: 13
Rep Power: 0
![]() |
Help please
Sorry i was a prick in the delphi bit i dont dont like to take shit, we all know how it is... anyway..
Does anyone know where i can download packages for C++ like sys/socket.h This is pretty important. Thanks |
|
|
|
|
#2 |
|
Expert Programmer
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 4
![]() |
What do you mean by packages?
|
|
|
|
|
#3 |
|
Hobbyist Programmer
Join Date: Jun 2005
Location: here
Posts: 137
Rep Power: 0
![]() |
__________________
"...and though our kids are blessed their parents let them shoulder all the blame." - The Quiet Things That No One Ever Knows [BrandNew] |
|
|
|
|
#4 |
|
Newbie
Join Date: Aug 2005
Posts: 13
Rep Power: 0
![]() |
arn't you able to download packages with lots of these extentions in?
Like: <sys/socket.h> <unistd.h> <arpa/inet.h> <openssl/md5.h> |
|
|
|
|
#5 | |
|
Expert Programmer
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 4
![]() |
Quote:
|
|
|
|
|
|
#6 | |
|
Professional Programmer
Join Date: May 2005
Location: Bad Nauheim, Germany
Posts: 436
Rep Power: 4
![]() |
Quote:
__________________
-Steven "Is this a piece of your brain?" - Basil Fawlty |
|
|
|
|
|
#7 | |
|
Expert Programmer
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 4
![]() |
Quote:
![]() |
|
|
|
|
|
#8 |
|
Newbie
Join Date: Aug 2005
Posts: 13
Rep Power: 0
![]() |
so it cant be done? I know there for linux but i need to compile some linux stuff on my box.
|
|
|
|
|
#9 | |
|
Expert Programmer
Join Date: Aug 2005
Location: Rotterdam, the Netherlands
Posts: 942
Rep Power: 4
![]() |
Quote:
|
|
|
|
|
|
#10 |
|
Resident Grouch
![]() ![]() ![]() ![]() ![]() ![]() Join Date: Jun 2005
Posts: 6,453
Rep Power: 10
![]() |
The declarations (prototypes) serve as a description so that the compiler may check for correct usage. They are normally found in the header files. The code you need (the definitions) are rarely there. They are normally in library files. Your compilation may succeed if the headers are found, but the link step will fail the the actual code, as carried in library files, is not found. The locations of both of these types of files can be specified on the compiler/linker's command line or, if you are using an IDE, in the IDE's options/preferences areas.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code. Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers |
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|