📄 error.c
字号:
/***error.c - Error-handling subroutinesWritten by Gerard Paul JavaCopyright (c) Gerard Paul Java 1997, 1998This software is open source; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or(at your option) any later version.This program is distributed WITHOUT ANY WARRANTY; without even theimplied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the GNU General Public License in the included COPYING file fordetails.***/#include <curses.h>#include <panel.h>#include <winops.h>#include <msgboxes.h>#include "deskman.h"#include "attrs.h"#include "error.h"#include "log.h"void write_error(char *msg, int daemonized){ int response; if (daemonized) write_daemon_err(msg); else tx_errbox(msg, ANYKEY_MSG, &response);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -