加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cmd_windowclose.c 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
Daniel Kahn Gillmor 提交于 2015-05-17 15:42 . New feature to close windows.
#include "xdo_cmd.h"
int cmd_windowclose(context_t *context) {
int ret = 0;
char *cmd = *context->argv;
const char *window_arg = "%1";
int c;
static struct option longopts[] = {
{ "help", no_argument, NULL, 'h' },
{ 0, 0, 0, 0 },
};
static const char *usage =
"Usage: %s [window=%1]\n"
HELP_SEE_WINDOW_STACK;
int option_index;
while ((c = getopt_long_only(context->argc, context->argv, "+h",
longopts, &option_index)) != -1) {
switch (c) {
case 'h':
printf(usage, cmd);
consume_args(context, context->argc);
return EXIT_SUCCESS;
break;
default:
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
}
consume_args(context, optind);
if (!window_get_arg(context, 0, 0, &window_arg)) {
fprintf(stderr, usage, cmd);
return EXIT_FAILURE;
}
window_each(context, window_arg, {
ret = xdo_close_window(context->xdo, window);
if (ret) {
fprintf(stderr, "xdo_close_window reported an error on window %ld\n",
window);
}
}); /* window_each(...) */
return ret;
} /* int cmd_windowclose(context_t *) */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化