正如 msdn http://msdn.microsoft.com/en-us/library/aa288468(v=vs.71).aspx所说,“平台调用服务 (PInvoke) 允许托管代码调用在 DLL 中实现的非托管函数。 "
我想从我用 C++ 制作的 DLL 中导入一些类
有可能吗?怎么做?
例如,我在 DLL 中有一些结构:
struct __declspec(dllexport) DLLVector3
{
float x, y, z;
};
struct __declspec(dllexport) DLLQuaternion
{
float x, y, z, w;
};
class __declspec(dllexport) DLLCharacter
{
public:
DLLVector3 position;
DLLQuaternion orientation;
DLLCharacter()
{
}
~DLLCharacter()
{
}
void setPosition(PxVec3 pos)
{
position.x = pos.x;
position.y = pos.y;
position.z = pos.z;
}
void setOrientation(PxQuat or)
{
orientation.x = or.x;
orientation.y = or.y;
orientation.z = or.z;
orientation.w = or.w;
}
};
struct __declspec(dllexport) PhysicalObject
{
DLLCharacter *character;
PxRigidActor *mActor;
PxController *mController;
};
我可以通过哪种方式导入这些?尤其是那些带有指针的结构