有没有人会写动态链接库啊!只给了一个头文件!
// return the Channel Count of the deviceSEFUNCTIONS_API
int __stdcall voseGetChannelCount();
// set Pixel data Report type to Volt, dBm, or wavelength
SEFUNCTIONS_API
void __stdcall voseSetPixelReportMode(enum ePixelMode eMode);
// acquire sensor/spectrum data and calculate channel results
SEFUNCTIONS_API
int __stdcall voseAcquireData();
// get the sensor/spectrum data.
// The size of the data buffer should be at least the Pixel Count.
SEFUNCTIONS_API
void __stdcall voseGetSensorData(double* pSensorData);
// get the channel wavelengths.
// The size of the data buffer should be at least the Channel Count.
SEFUNCTIONS_API
void __stdcall voseGetChannelWavelength(double* pWavelength);
// get the channel powers.
// The size of the data buffer should be at least the Channel Count.
SEFUNCTIONS_API
void __stdcall voseGetChannelPower(double* pPower);
// get the channel OSNRs.
// The size of the data buffer should be at least the Channel Count.
SEFUNCTIONS_API
void __stdcall voseGetChannelOSNR(double* pOSNR);
// get the whole content of the DPRAM. The buffer size must be 4096.
SEFUNCTIONS_API
void __stdcall voseGetAllDPRAMData(unsigned char* pBuf);
// close the communication and clean up vose
SEFUNCTIONS_API BOOL __stdcall voseStop();
#ifdef __cplusplus
}
#endif
#endif //#ifndef _VOSE32_H_