Page 1 of 1

asinet1c.lib

Posted: Fri Nov 06, 2015 11:58 am
by bamunz@earthlink.net
I am trying to pbuild \samples\tracker but I am missing asinet1c.lib. I have professional subscription and I have asinet10.lib but not the asinet1c.
Where can I get it?

Re: asinet1c.lib

Posted: Fri Nov 06, 2015 12:36 pm
by rdonnay
ASINET1C.LIB/DLL and ASINETC.CH are no longer used in Xbase++ 2.0.

Change TRACKER.PRG as follows (line 87) :

Code: Select all

#ifdef SENDMAIL_ASINET
  #pragma Library("asinet10.lib")
  #if XPPVER < 2000000
    #pragma Library("asinet1c.lib")
    #include "asinetc.ch"
  #else
    #include "socket.ch"
  #endif
  #pragma Library("asiutl10.lib")
#endif
This will be fixed in next eXpress++ release.

Re: asinet1c.lib

Posted: Fri Nov 06, 2015 12:49 pm
by bamunz@earthlink.net
Thanks Roger :D