gpt4 book ai didi

c - 错误 : undeclared function

转载 作者:太空宇宙 更新时间:2023-11-04 04:08:22 25 4
gpt4 key购买 nike

在我的 gtk+ 应用程序中,我在 mainwin.c 中有函数:

void
on_prev( GtkWidget* btn, MainWin* mw )
{
...
}

在文件 ui.h 中我有:

#include "mainwin.h"
static const GtkActionEntry entries[] = {
{
"Go Back",
GTK_STOCK_GO_BACK,
"Go Back",
"<control>b",
"Go Back",
G_CALLBACK(on_prev)
},
}

但是当我尝试编译这个应用程序时,我看到错误:ui.h:error: 'on_prev' undeclared here (not in a function).

怎么了?

谢谢。

最佳答案

为其添加原型(prototype),可能在mainwin.h中:

void
on_prev( GtkWidget* btn, MainWin* mw );

关于c - 错误 : undeclared function,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3004044/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com