user3378939
user3378939

Reputation: 11

How to Call VC++ Dll from my windows phone application?

I have to call VC++ dll in my windows phone project.

I trying using windows runtime component project as a bridge.

Windows Phone Project <-> Windows runtime component <-> vc++ project

is this right direction or i need to do it with other way....?

Upvotes: 0

Views: 49

Answers (1)

David Heffernan
David Heffernan

Reputation: 613461

You've got a DLL compiled for Intel x64 architecture. You cannot load that on Windows Phone which runs on ARM.

Upvotes: 1

Related Questions