static struct fuse_oprations hello_oper = {
.getattr = hello_getattr,
.readdir = hello_readdir,
.open = hello_open,
.read = hello_read,
};
我不太了解这种C语法。我什至无法搜索,因为我不知道语法的名称。那是什么?
它看起来像一个结构初始化程序。
—
Mysticial 2011年
在C99中标准化,因此如果您使用的(真的)旧的编译器,将无法使用。
—
一些程序员伙计
终于找到了链接,这样的:stackoverflow.com/questions/330793/...
—
Mysticial
不幸的是,按此标准,即使是最新版本的MSVC都是“(真的)旧编译器”。
—
乔纳森·勒夫勒
绝对奇怪,我在阅读了保险丝教程的同时搜索了这个问题,并编写了完全相同的初始化程序。
—
Keegan Jay