1

我一直在尝试为一个名为 Micro-manager 的开源软件构建一个设备适配器来控制显微镜,我面临一些问题,这两个文件(一个标题和另一个 CPP)已经存在在 Micro-Manager 的开源包中。

//MoudluleInterface.h

#ifndef _MODULE_INTERFACE_H_
#define _MODULE_INTERFACE_H_

#ifdef WIN32
#ifdef MODULE_EXPORTS
  #define MODULE_API __declspec(dllexport)
#else
  #define MODULE_API __declspec(dllimport)
#endif

#else
#define MODULE_API
#endif
#define MM_MODULE_ERR_OK 1000
#define MM_MODULE_ERR_WRONG_INDEX   1001
#define MM_MODULE_ERR_BUFFER_TOO_SMALL 1002

 ///////////////////////////////////////////////////////////////////////////////
 // header version
 // NOTE: If any of the exported module API calls changes, the interface version
 // must be incremented
 // new version 5 supports device discoverability
 #define MODULE_INTERFACE_VERSION 7

#ifdef WIN32
const char* const LIB_NAME_PREFIX = "mmgr_dal_";
#else
const char* const LIB_NAME_PREFIX = "libmmgr_dal_";
#endif

#include "MMDevice.h"

///////////////////////////////////////////////////////////////////////////////
// Exported module interface
///////////////////////////////////////////////////////////////////////////////
 extern "C" {
 MODULE_API MM::Device* CreateDevice(const char* name);
 MODULE_API void DeleteDevice(MM::Device* pDevice);
 MODULE_API long GetModuleVersion();
 MODULE_API long GetDeviceInterfaceVersion();
 MODULE_API unsigned GetNumberOfDevices();
 MODULE_API bool GetDeviceName(unsigned deviceIndex, char* name, unsigned      bufferLength);
 MODULE_API bool GetDeviceDescription(const char* deviceName, char* name, unsigned bufferLength);

这是定义这些功能的 CPP 文件的一部分

      //ModuleInterface.cpp
      #define _CRT_SECURE_NO_DEPRECATE
      #include "ModuleInterface.h"
      #include <vector>
      #include <string>

        typedef std::pair<std::string, std::string> DeviceInfo; 
        std::vector<DeviceInfo> g_availableDevices;

      int FindDeviceIndex(const char* deviceName)
   {
  for (unsigned i=0; i<g_availableDevices.size(); i++)
  if (g_availableDevices[i].first.compare(deviceName) == 0)
     return i;

   return -1;
   }

  MODULE_API long GetModuleVersion()
 {
 return MODULE_INTERFACE_VERSION;   
 }

  MODULE_API long GetDeviceInterfaceVersion()
 {
return DEVICE_INTERFACE_VERSION;   
 }

 MODULE_API unsigned GetNumberOfDevices()
{
 return (unsigned) g_availableDevices.size();
 }

 MODULE_API bool GetDeviceName(unsigned deviceIndex, char* name, unsigned bufLen)
{
 if (deviceIndex >= g_availableDevices.size())
  return false;

现在的问题是它给了我一个错误 C2491(不允许定义 dllimport 函数)我对此进行了研究,通常是在应该声明函数时定义函数,我已经在 ModuleInterface.h 中定义了该函数然后在 ModuleInterface.cpp 中使用它,但它仍然显示相同的错误。发生此错误是否还有其他可能性?还是代码有问题?

4

1 回答 1

2

您不应该在定义中重复 MODULE_API 声明,将其作为声明的一部分就足够了。从 .cpp 文件中删除 MODULE_API 的使用,代码应该可以编译。

于 2013-07-10T14:51:18.020 回答