Re: libcurl - help needed
- Posted by ghaberek (admin) Oct 26, 2016
- 3439 views
I'm surprised it works at all because you missed the CDECL '+' in your call to call_back() again.
this:
write_cb = call_back( routine_id("curl_write_callback") )
should be:
write_cb = call_back({ '+', routine_id("curl_write_callback") })
-Greg