1

.dll在 Visual C++ 中创建了文件。
它包括一个函数,该函数接受两个参数并通过串行端口发送数据。接下来我想将它包含.dll在我的应用程序中并调用这些函数。但我无法调用这些函数。请帮助。

这是我的头文件.dll

 namespace positioncontrol

{  
using namespace std;
using namespace System;
using namespace System::IO::Ports;

  public ref class control

    {   
    static int rotate(char a, String^ b);

    };
}

这是.cpp给我的.dll

   #include "goniometer.h"    

    namespace positioncontrol
    { 

   void control::rotate(char a, String^ b)
    {        SerialPort^ serialPort = gcnew SerialPort(L"COM5",9600,Parity::None,1,StopBits::One);          
             int inp_rotation;
             array<unsigned char>^ inp_c = gcnew array<unsigned char>(2);   
             String^ inp_string;                                             
             inp_c[0] = a;
             inp_string= b;                                     
             inp_rotation=Int32::Parse(inp_string);                         
             inp_c[1] = (unsigned char)inp_rotation;
             serialPort->Write(inp_c,0,2);                                         
        }
     }

我在桌面应用程序中使用这个 .dll。我已经包含头文件

#ifndef goniometer_h
#define goniometer_h
#include "goniometer.h"
#endif

添加了包含目录的路径并添加了 .dll 作为参考。现在我使用 .dll 中定义的函数进行点击事件

private: System::Void button9_Click(System::Object^  sender, System::EventArgs^  e) {

              char dir;       
              dir = 0x42;
              String^ inp_string;                                                
              inp_string=enter_degree->Text; 
              positioncontrol::control::rotate(dir,inp_string);                                                      

         }

现在,当我构建我的桌面应用程序时,我收到以下错误

1>C:\Users\DELL\Desktop\Final\Motor_Dual_API\Debug\goniometer.h(10): error C2011: 'positioncontrol::control' : 'class' type redefinition
1>          c:\users\dell\desktop\final\vc++dll\debug\goniometer.dll : see declaration of 'positioncontrol::control'
1>c:\users\dell\desktop\final\motor_dual_api\motor_next\Form1.h(530): error C2027: use of undefined type 'positioncontrol::control'
1>          c:\users\dell\desktop\final\vc++dll\debug\goniometer.dll : see declaration of 'positioncontrol::control'
1>c:\users\dell\desktop\final\motor_dual_api\motor_next\Form1.h(530): error C3861: 'rotate': identifier not found
1>c:\users\dell\desktop\final\motor_dual_api\motor_next\Form1.h(540): error C2027: use of undefined type 'positioncontrol::control'
1>          c:\users\dell\desktop\final\vc++dll\debug\goniometer.dll : see declaration of 'positioncontrol::control'
1>c:\users\dell\desktop\final\motor_dual_api\motor_next\Form1.h(540): error C3861: 'rotate': identifier not found

请帮助我找出错误。谢谢并恭祝安康

4

2 回答 2

0

在 C++ 中,命名空间分隔符是::而不是.. 检查你的using陈述。

于 2012-10-25T06:25:15.110 回答
0

您的代码没有定义serialPort. 将定义添加到全局命名空间、命名空间positionControl或作为函数中的自动变量

从语义上看,serialPort是一个指针。所以还必须创建一个对象的实例,serialPort 指向的地方。

于 2012-10-25T11:25:02.173 回答