| | |
c and shared libs ?? how to do it right?
![]() |
•
•
Join Date: Feb 2006
Posts: 9
Reputation:
Solved Threads: 0
Hey, I am a newbie to all of this so please don't flame me for a stupid question.
I am trying to write a shared lib that will initialize a connection to a messaging deamon. Then the library will be called at intervals and send data.
My problem is that I am having issues with passing a datatype to a lib. I would think that the following would work.
<code>
void
initRv( tibrvTransport *transport)
{
char* serviceStr = "7500";
char* networkStr = "";
char* daemonStr = "tcp:7500";
status = tibrvTransport_Create(*transport, serviceStr, networkStr, daemonStr);
return;
}
<\code>
Give me a warning: passing arg 1 of `tibrvTransport_Create' makes pointer from integer without a cast
I think I have the pointers screwed up.??
I am trying to write a shared lib that will initialize a connection to a messaging deamon. Then the library will be called at intervals and send data.
My problem is that I am having issues with passing a datatype to a lib. I would think that the following would work.
<code>
void
initRv( tibrvTransport *transport)
{
char* serviceStr = "7500";
char* networkStr = "";
char* daemonStr = "tcp:7500";
status = tibrvTransport_Create(*transport, serviceStr, networkStr, daemonStr);
return;
}
<\code>
Give me a warning: passing arg 1 of `tibrvTransport_Create' makes pointer from integer without a cast
I think I have the pointers screwed up.??
•
•
Join Date: May 2004
Posts: 178
Reputation:
Solved Threads: 10
try
transport is already a pointer, so using *transport says to pass that value of the object pointed to, not the address. Pointers are addresses.
It also seems you are not prototyping functions. Or maybe not including header files.
There should be separate prototypes for each of the functions so that compiler won't issue a warning, instead it will issue a fatal error if the datatype of an argument is wrong.
It's possible *transport was actually correct, but the compiler does not seem to know.
C Syntax (Toggle Plain Text)
status = tibrvTransport_Create(transport, serviceStr, networkStr, daemonStr);
It also seems you are not prototyping functions. Or maybe not including header files.
There should be separate prototypes for each of the functions so that compiler won't issue a warning, instead it will issue a fatal error if the datatype of an argument is wrong.
C Syntax (Toggle Plain Text)
I made up this prototype: void tibrvTransport_Create(tibrvTransport *, char *, char *, char *);
It's possible *transport was actually correct, but the compiler does not seem to know.
![]() |
Similar Threads
- Installing Software (*nix Software)
- FrontPage98 help with shared borders (HTML and CSS)
- fopen: No such file or directory (*nix Software)
- Set Permissions for Shared Files and Folders (Windows tips 'n' tweaks)
Other Threads in the C Forum
- Previous Thread: Pointer arithmetic homework question
- Next Thread: pls help me to convert char to integer.
| Thread Tools | Search this Thread |
#include adobe ansi api array asterisks binarysearch changingto char character cm copyimagefile cprogramme creafecopyofanytypeoffileinc createcopyoffile csyntax database directory dynamic execv feet fgets file fork forloop frequency function getlasterror givemetehcodez global grade graphics gtkgcurlcompiling hacking hardware highest histogram i/o include incrementoperators infiniteloop input interest kernel keyboard kilometer license linked linkedlist linux linuxsegmentationfault list locate logical_drives looping loopinsideloop. lowest match matrix meter microsoft motherboard mqqueue mysql number odf opensource owf pattern pdf performance pointer posix probleminc process program programming radix recursion recv repetition research reversing scanf segmentationfault sequential shape socket socketprograming standard string systemcall threads turboc unix user voidmain() wab windows.h windowsapi





