Quote:
Originally Posted by ericshliao
My original intention was to compile it to an object file. But I have too few knowledge using gcc. So I included (or copied) "xepdmgrclient.c" and "xepdmgrclient.h". It's working, but not in an elegant way. 
|
To compile it into an object file:
Code:
gcc -c xepdmgrclient.c
That will produce "xepdmgrclient.o", that you can link with your program.
If anything needs more explanations, don't hesitate to ask

.