请问一下关于SDK/API的二次开发?
现在买了一台短波接收机,监测界面在PC机上显示,界面里的有些参数不符合实际中的要求,需要做一个改变,所以得从新做个界面,这款接收机已经给了API接口函数,以及动态链接库.dll API里面是C/C++声明函数,还有Delphi声明函数。附上一个函数的说明:
Open
Opens a radio device by its serial number to allow you to control the device using the other API functions.
C/C++ declaration
int __stdcall Open(char *ID);
Delphi declaration
function Open(ID: PChar): Integer; stdcall;
Parameters
ID
Radio device serial number that you would like to open. If NULL is specified, a demo receiver will be opened. The serial number is a null-terminated string.
Return Value
Returns a handle to the device that has to be used to call all the other API functions (hRadio). If zero is returned, the specified device doesn't exist or couldn't be opened.
Remarks
If you would like to have more than one application use the same device, you will have to close the device when you have finished using it to allow other applications to access the device. For Win32 applications, multiple threads can access the same device at any time.
请问下用什么语言开发比较好,因为还要做个界面出来,用labview可以进行二次开发吗,还是用VC++呢。本人新手 学习过C,没怎学过C++,还是有什么更好的!!