Is libsrs2 completely dead?
Matthias Wimmer <[email protected]> Thu, 15 Mar 2007 21:27:46 +0100
| Newsgroups | gmane.mail.spam.srs.general |
|---|---|
| Message-ID | <[email protected]> |
This is a multi-part message in MIME format. --------------050805020309020403040702 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Hi! Is libsrs2 dead? The website on libsrs2.org is off and I could also not contact any of the mail addresses when I tried to send the attached e-mail. Matthias ------- To unsubscribe, change your address, or temporarily deactivate your subscription, please go to http://v2.listbox.com/member/?list_id=1129 --------------050805020309020403040702 Content-Type: message/rfc822; name="Using libsrs2 in C++" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Using libsrs2 in C++" Message-ID: <[email protected]> Date: Thu, 15 Mar 2007 21:22:12 +0100 From: Matthias Wimmer <[email protected]> User-Agent: Thunderbird 1.5.0.10 (X11/20070307) MIME-Version: 1.0 To: [email protected] Subject: Using libsrs2 in C++ Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Hi! I am trying to use libsrs2 in a C++ program. My problem is, that libsrs2 is not prepared to be used in C++. It would only require a small change in the srs2.h header file. At the beginning: #ifdef __cplusplus extern "C" { #endif ... and at the ending: #ifdef __cplusplus } #endif You will see that in most other header files as well. Another problem I found is, that you are using time_t and size_t, which are not defined by the headers you include in srs2.h, the following includes would fix that: #include <time.h> #include <stddef.h> It would be cool if you could fix these problems. Matthias --------------050805020309020403040702--