Anu
Anu

Reputation: 177

Microsoft SDK in android NDK

I want to include Microsoft SDK (ADSI development) files in android. I need to use #include"activeds.h" in .cpp file in my android app. How to include third party lib and header files in android ndk?

Upvotes: 0

Views: 65

Answers (1)

Gabe Sechan
Gabe Sechan

Reputation: 93678

You can't. ADSI is a Windows only thing. It doesn't exist on Linux (which is the base of Android). It isn't just algorithms, the entire subsystem it relies on doesn't exist, starting with the entire idea of COM.

Upvotes: 0

Related Questions