作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 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();
关于cocoa - "Implicit declaration of function ' _CGSDefaultConnection ' is invalid in C99",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7021439/
我是 cocoa 编程的新手,但我选择了一个项目并不断遇到错误。错误是: "Implicit declaration of function '_CGSDefaultConnection' is in
我是一名优秀的程序员,十分优秀!