0

わかりましたので、を使用して呼び出すことができる別のアプリケーション用のランタイム DLL を作成しようとしていますGetProcAddress

そのため、VS2012 C++ Express (以下のヘッダーとソース) で DLL をビルドしましたがNULL、dll が exe と同じフォルダーにある場合でも返されます。dllmainしたがって、これにより、機能に問題があると思いました。それで、MSDNを調べ始めたところ、次のリンクが見つかりました

http://msdn.microsoft.com/en-us/library/vstudio/988ye33t.aspx

このMSDNリンクに従って行ったdllテンプレートを作成すると、すでに処理されていると記載されています。

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();
    }
}
4

2 に答える 2