| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 637 人关注过本帖
标题:有没有人会写动态链接库啊!只给了一个头文件!
取消只看楼主 加入收藏
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
快速回复:有没有人会写动态链接库啊!只给了一个头文件!
数据加载中...
 
   



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

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