I have a windows service fully functional, except that I'm trying to add the ability to send text messages using cURL.
I am using Harbour, MSVC, and FWH.
In a normal windows application I have no problem. I have a SMS texting program using the same libraries and commands, and it works great.
This is the offending line:
hCurl := curl_easy_init()
IF this line exists in the program, then the service will not start. However, without this operation, it works perfectly ( though of course I cannot send the text messages ).
The service does a number of functions, and the job I want it to perform here is to send reminder text messages automatically.
Is Harbour's implementation of cURL not compatible with running in a service ?
Is there an alternative ?