Phidg​​ets Wrapper无法正常工作

时间:2015-01-20 19:11:53

标签: c++ c++11

我为phidgets C库创建了一个C ++包装器,我目前有PhidgetDevice.h用于通用的Phidg​​et设备,这里是标题:

#ifndef PHIDGET_DEVICE_H
#define PHIDGET_DEVICE_H

#include <phidget21.h>
#include <vector>
#include <iostream>
#include <string>


#define COMMON_IO_EVENT_CALLBACK(name) int CCONV name(CPhidgetHandle phid, void* userPtr)
#define ERROR_EVENT_CALLBACK(name) int CCONV name(CPhidgetHandle phid, void *userPtr, int errorCode, const char *errorString)

enum DeviceType
{
    DEVICE_NULL,
    DEVICE_KIT, 
    DEVICE_TEMPERATURE_SENSOR, 
    DEVICE_MOTION_SENSOR
};


class PhidgetDevice /* base class for every phidget device*/
{
public:
    PhidgetDevice() : m_type(DEVICE_NULL) {}
    explicit PhidgetDevice(DeviceType type) : m_type(type) {}
    void SetType(DeviceType type) { m_type = type; }

    virtual DeviceType GetType() { return m_type; }

    virtual void CCONV SetAttachHandler(CPhidgetHandle IFK, int(__stdcall * callback) (CPhidgetHandle phid, void *userPtr), void *userptr) { CPhidget_set_OnAttach_Handler(IFK, callback, userptr); }
    virtual void CCONV SetDetachHandler(CPhidgetHandle handle, int(__stdcall * callback) (CPhidgetHandle phid, void* userPtr), void * userptr) { CPhidget_set_OnDetach_Handler(handle, callback, userptr); }
    virtual void CCONV SetErrorHandler(CPhidgetHandle handle, int(__stdcall * callback) (CPhidgetHandle phid, void* userPtr, int errorCode, const char *errorString), void * userptr) { CPhidget_set_OnError_Handler(handle, callback, userptr); }
protected:
    DeviceType m_type;
};
#endif

这使得混乱的C Phidg​​et功能看起来好一点。 现在,这在Visual Studio 2013上编译得很好但是当我尝试使用包含-std=c++11的g ++ 4.8进行编译时,我得到:

  

Phidg​​etDevice.h:34:72:错误:预期')'在'*'标记虚拟之前   void CCONV SetAttachHandler(CPhidg​​etHandle IFK,int(__ stdcall *)   回调)(CPhidg​​etHandle phid,void * userPtr),void * userptr){   CPhidg​​et_set_OnAttach_Handler(IFK,callback,userptr); }

其中更多,都抱怨函数指针。

我的函数指针有什么问题?

1 个答案:

答案 0 :(得分:1)

您的函数指针定义很好,它是导致gcc问题的__stdcall关键字。 __stdcall关键字定义编译器将为其指定的函数使用的调用约定;特别是__stdcall本身(双下划线然后是stdcall措辞)是用于调用约定的MS特定关键字,如果您希望使用gcc维护它,您可以执行以下操作:

#ifndef WIN32
    #ifndef __stdcall
        #define __stdcall __attribute__((stdcall))
    #endif
#endif

虽然您可能会发现它在很大程度上会被编译器忽略(作为gcc警告:warning: 'stdcall' attribute ignored)。