I have an Android/iPhone apps that share the same cpp core engine.
I want to use the same cpp core engine in the web app in some way.
I wonder what are my options? What is the best approach?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to re-use the existing C++ code, then depending on your platform you can write a CGI (Common Gateway Interface) extension for your favourite web-server.
If your platform is Windows, you can also write an ISAPI extension DLL in C++ and access your core library from there.