gpt4 book ai didi

cocoa - "Implicit declaration of function ' _CGSDefaultConnection ' is invalid in C99"

转载 作者:行者123 更新时间:2023-12-03 17:42:57 25 4
gpt4 key购买 nike

我是 cocoa 编程的新手,但我选择了一个项目并不断遇到错误。错误是:

"Implicit declaration of function '_CGSDefaultConnection' is invalid in C99"

我用谷歌搜索了它,但找不到关于问题所在的明确答案。但据我所知, cid = (CGSConnectionID)_CGSDefaultConnection(); 行没有以正确的方式定义。

完整代码如下:

#define kIconLevel -2147483628
+ (NSArray*)allIconRects
{
NSMutableArray *rects = [NSMutableArray array];

int results[1000];
int count = -1;

CGSConnectionID cid;
cid = (CGSConnectionID)_CGSDefaultConnection();
CGSGetWindowList( cid, 0, 1000, results, &count );

int i = 0;
for (i = 0; i < count; i++) {
CGWindowLevel level;
CGSGetWindowLevel( cid, results[i], &level );
if (level == kIconLevel) {
NSRect bounds;
CGSGetWindowBounds(cid, results[i], (CGRect*) &bounds);
[rects addObject:[NSValue valueWithRect:bounds]];
}
}

return rects;
}

任何帮助将不胜感激:)

最佳答案

C99 requires functions to be prototyped使用前。由于这是一个隐藏的 API,您需要告诉编译器在链接时查找它,而不是在包含的头文件中查找:

extern CGSConnectionID _CGSDefaultConnection();

http://cocoadev.com/DontExposeMe

关于cocoa - "Implicit declaration of function ' _CGSDefaultConnection ' is invalid in C99",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7021439/

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