为了自学一点C ++,我决定编写一个小程序来将文本写入我的Saitek X52 Pro操纵杆显示器。
我想使用Eduards C库 http://plasma.hasenleithner.at/x52pro/
我知道如果我想在我的C ++程序中使用它们,我必须在方法周围放置一个“extern C”。但这意味着更改库的Header文件 - 然后它将不再构建。 在这种情况下,正确的方法是什么?
编辑:建议的方法部分有效。
Comm.cpp:
...
extern "C"{
#include <x52pro.h>
}
using namespace std;
int main ( int argc, char *argv[] ) {
cout<<"entered main"<<endl;
char *String;
strcpy(String,"testing");
struct x52 *hdl = x52_init();
x52_settext(hdl, 0,String , 7);
x52_close(hdl);
return EXIT_SUCCESS;
}
错误讯息:
Comm.o: In function `main':
Comm.cpp|38| undefined reference to `x52_init'
Comm.cpp|39| undefined reference to `x52_settext'
Comm.cpp|40| undefined reference to `x52_close'
这是x52pro.h中定义的所有方法
答案 0 :(得分:4)
要在C头文件中使用extern "C"
,请将其包装
#ifdef __cplusplus
extern "C" {
#endif
...
#ifdef __cplusplus
}
#endif
或者您可以使用#include
extern "C"
extern "C" {
#include <chdr1.h>
#include <chdr2.h>
}
链接应用程序时,必须告诉链接器使用哪个库以及库的位置。从您的链接,您还必须添加libusb。这看起来大致像这样
g++ -o app_name Comm.o -L /path/to/library -lx52pro -lusb
当库安装在系统lib目录中时,您可以省略-L /path/...
部分。如果使用Makefile,则可以在某些变量中定义它,通常是
LDFLAGS = -L /path/to/library
LDLIBS = -lx52pro -lusb
答案 1 :(得分:0)
#ifdef __cplusplus
extern C {
#endif
...
#ifdef __cplusplus
}
#endif
答案 2 :(得分:0)
在您的C ++代码中,您可以使用extern "C"
包围头文件,如下所示:
extern "C" {
#include "c_header_file.h"
}
然后,您不需要修改第三方库的头文件。