I was looking at example ETA code included in the ElektronSDK version 1.1.0. I found some logic there that I thought might be applicable to by client and added a few lines based on what I saw there. However compilation failed when I tried to compile the client code.
The client is using the ElektronSDK version 1.0.6. It looks like there are additional #defines and fields in structures in the newer version.
Without going into the details regarding why I can't simply start using 1.1.0, I was hoping there was a way to modify the client code to do something like:
#if RSSL_API_VERSION >= 110
// use portions of SDK available starting with version 1.1.0
#endif
But I haven't been able to find #define like that in any of the include files.
Is there such a #define?
If not, can one be added in future versions for such a purpose?