标题:有没有人会写动态链接库啊!只给了一个头文件!
取消只看楼主
xiajj
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2014-2-25
结帖率:0
已结贴  问题点数:20 回复次数:0 
有没有人会写动态链接库啊!只给了一个头文件!
// return the Channel Count of the device
SEFUNCTIONS_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_
搜索更多相关主题的帖子: Channel return should least 动态 
2014-02-25 22:27



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-427674-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.082122 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved