-
Hello, I am looking to integrate this SDK into a C application. I see 2 options:
I already have the C++ application which works fine, but I do not want to maintain 2 copies because it causes parity maintenance burden. Is there any other way I can achieve this? Has anybody tried to achieve this yet? Or if there is a C equivalent of this SDK, that would be awesome too! But I doubt it exists. Any pointers will be appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sorry, but there is no C sdk that is equivalent to this one. You would have to write C wrappers for the functions that you want to use or write an equivalent C++ application. My suggestion would be to write your application in C++ if possible. You can potentially use your current C code in a C++ application. It would be a lot of work to make wrappers with little benefit other than keeping your current C code. |
Beta Was this translation helpful? Give feedback.
Sorry, but there is no C sdk that is equivalent to this one. You would have to write C wrappers for the functions that you want to use or write an equivalent C++ application.
My suggestion would be to write your application in C++ if possible. You can potentially use your current C code in a C++ application. It would be a lot of work to make wrappers with little benefit other than keeping your current C code.