1

为了自学一点 C++,我决定编写一个小程序来将文本写入我的 Saitek X52 Pro 操纵杆显示器。

我想使用 Eduards C 库 http://plasma.hasenleithner.at/x52pro/

我知道如果我想在我的 C++ 程序中使用它们,我必须在方法周围放置一个“extern C”。但这意味着更改库的头文件 - 然后它就不会再构建了。在这种情况下,正确的方法是什么?

编辑:建议的方法部分起作用。

通讯.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 中定义的所有方法

4

3 回答 3

4

extern "C"在 C 头文件中使用,请将其包装为

#ifdef __cplusplus
extern "C" {
#endif
...
#ifdef __cplusplus
}
#endif

或者你可以#includeextern "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

另请参阅编译和链接维基百科 - 链接器(计算)

于 2013-01-18T22:37:21.123 回答
0
#ifdef __cplusplus
   extern C {
#endif 
    ...

#ifdef __cplusplus
   }
#endif
于 2013-01-18T22:36:29.037 回答
0

在您的 C++ 代码中,您可以像这样围绕包含的头文件extern "C"

extern "C" {
#include "c_header_file.h"
}

然后,您不需要修改第三方库的头文件。

于 2013-01-18T22:36:30.670 回答