asinet1c.lib

This forum is for eXpress++ general support.
Post Reply
Message
Author
bamunz@earthlink.net
Posts: 23
Joined: Fri Apr 17, 2015 11:09 am

asinet1c.lib

#1 Post 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?

User avatar
rdonnay
Site Admin
Posts: 4745
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: asinet1c.lib

#2 Post 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.
The eXpress train is coming - and it has more cars.

bamunz@earthlink.net
Posts: 23
Joined: Fri Apr 17, 2015 11:09 am

Re: asinet1c.lib

#3 Post by bamunz@earthlink.net »

Thanks Roger :D

Post Reply