好的,我正在尝试为另一个可以使用GetProcAddress
调用的应用程序创建运行时DLL。
所以我在VS2012 C ++ Express(下面的Header和source)中构建了DLL,即使dll与exe在同一个文件夹中,它也会返回NULL
。所以这让我相信dllmain
函数存在问题。所以我开始浏览MSDN并找到以下链接
http://msdn.microsoft.com/en-us/library/vstudio/988ye33t.aspx
它说我在创建dll模板时已经注意了我,这是我在MSDN链接之后做的。
http://msdn.microsoft.com/en-us/library/ms235636%28v=vs.80%29.aspx
所以我决定尝试在发布模式下构建DLL(想一想这可能是问题)但是我得到一个链接器错误,说必须定义入口点。它在调试模式下构建良好,但在发布模式下不构建。我想我在这里缺少一些简单的东西。
Error 1 error LNK1561: entry point must be defined C:\Users\ProRip\Documents\Visual Studio 2012\Projects\PhantomAdapter\AdapterDLL\LINK AdapterDLL
标题
#ifdef PHANTOMADAPTER_EXPORTS
#define PHANTOMADAPTER_API __declspec(dllexport)
#else
#define PHANTOMADAPTER_API __declspec(dllexport)
#endif
#using <mscorlib.dll>
#using <system.dll>
using namespace System;
using namespace System::IO::Ports;
using namespace System::Threading;
namespace PhantomAdapter
{
class PhantomAdapter
{
public:
static PHANTOMADAPTER_API int open();
static PHANTOMADAPTER_API int close();
//static PHANTOMADAPTER_API double init(bool );
//static PHANTOMADAPTER_API int noDevices();
static PHANTOMADAPTER_API int angle(double& angle);
static PHANTOMADAPTER_API int torque(double torque);
static PHANTOMADAPTER_API int ready();
};
public ref class SerialPort
{
private:
static System::IO::Ports::SerialPort^ p1;
public:
static int openPort();
static void closePort();
static int read();
static void send(Byte data);
static int check();
};
}
来源
#include "stdafx.h"
#include "stdafx.h"
#include "PhantomAdapter.h"
#include <stdexcept>
using namespace std;
namespace PhantomAdapter
{
int PhantomAdapter::open()
{
int flag=0;
flag=SerialPort::openPort();
return flag;
}
int PhantomAdapter::close()
{
SerialPort::closePort();
return 1;
}
int PhantomAdapter::angle(double& angle)
{
SerialPort::send(0x82);
angle = (SerialPort::read() * 255) + (SerialPort::read());
angle = angle*(6.2832/512);
return 1;
}
int PhantomAdapter::torque(double torque)
{
return 1;
}
int PhantomAdapter::ready()
{
return SerialPort::check();
}
int SerialPort::openPort()
{
bool check=0;
p1 = gcnew System::IO::Ports::SerialPort();
p1->BaudRate = 57600;
p1->PortName = "COM3";
if(p1->IsOpen)
return 0;
else {
p1->Open();
return 1;
}
}
int SerialPort::check()
{
array<String^>^ serialPorts = nullptr;
int flag=0;
serialPorts = p1->GetPortNames();
for each(String^ port in serialPorts)
{
if(port=="COM3")
flag=1;
}
return flag;
}
void SerialPort::closePort()
{
p1->Close();
}
void SerialPort::send(Byte data)
{
array<unsigned char>^ buffer = gcnew array<Byte>(1);
buffer[0] = (char)data;
p1->Write(buffer,0,1);
}
int SerialPort::read()
{
return p1->ReadByte();
}
}
答案 0 :(得分:1)
在您的VS项目中,您可以检查设置:
1. Configuration Properties > General > Configuration Type
?在发布模式下,这是否设置为.dll
?
2. Configuration Properties > Linker > System > SubSystem
?这两种模式之间是否相同?
答案 1 :(得分:0)
您不能通过LoadLibrary / GetProcAddress从本机代码调用.NET方法(以及C ++ / CLI方法是.NET方法)。 .NET方法和类不以这种方式导出。你将永远得到一个NULL指针。
你能做什么:
在.NET中编写COM组件以在纯C ++中引用
导出仅在内部调用.NET代码的普通C ++方法
使用Assembly
类及其方法将托管dll导入托管(相同的C ++ / CLI或C#或任何其他.NET语言)可执行文件。