索引器找不到 printf/exit/fprintf (Eclipse + Qt + MinGW 集成有关 stdio.h / stdlib.h / 等中的内容)

发布于 2024-12-08 16:18:26 字数 829 浏览 1 评论 0原文

我有一个 Qt 项目和 Eclipse,从 Qt Eclipse 集成程序开始。 我正在使用最新版本的 Qt (4.3.4)、Eclipse 和 MinGW。

我的问题是,Eclipse 索引器找不到像 printf()/fprintf()/exit() 这样的东西!代码编译良好,程序运行正常!

例如:

static void mouseHandler(int event, int x, int y, int flags, void *param)
{
switch(event) {
/* left button down */
case CV_EVENT_LBUTTONDOWN:
    MousePointerPosition = cvPoint(x,y);
    leftClicks = 1;
    break;

    /* right button down */
case CV_EVENT_RBUTTONDOWN:
    fprintf(stdout, "Right button down (%d, %d).\n", x, y);
    break;

    /* mouse move */
case CV_EVENT_MOUSEMOVE:
    break;
}
}   

我包含了我包含的目录和文件的屏幕截图(注意:我在屏幕截图中使用了 Qt 4.7.3,不应该有什么区别)!

有什么建议吗?

这是屏幕截图的链接(我是新用户..): 屏幕截图

I have a Qt Project and Eclipse started with the Qt Eclipse integration program.
I am using the newest version of Qt (4.3.4), Eclipse and MinGW.

My problem is, that the Eclipse Indexer does not find stuff like printf()/fprintf()/exit()! The code compiles fine and the program runs normally!

e.g:

static void mouseHandler(int event, int x, int y, int flags, void *param)
{
switch(event) {
/* left button down */
case CV_EVENT_LBUTTONDOWN:
    MousePointerPosition = cvPoint(x,y);
    leftClicks = 1;
    break;

    /* right button down */
case CV_EVENT_RBUTTONDOWN:
    fprintf(stdout, "Right button down (%d, %d).\n", x, y);
    break;

    /* mouse move */
case CV_EVENT_MOUSEMOVE:
    break;
}
}   

I included a screenshot of the directories and files I included (note: I used Qt 4.7.3 in the screenshot, shouldn't make a difference)!

Any suggestions?

Here's a link to the screenshot (I am a new user..):
screenshot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文