logging.h
来自「GSM猫管理程序」· C头文件 代码 · 共 37 行
H
37 行
/*SMS Server Tools 3Copyright (C) Keijo Kasvihttp://smstools3.kekekasvi.com/Based on SMS Server Tools 2 from Stefan Fringshttp://www.meinemullemaus.de/This program is free software unless you got it under another license directlyfrom the author. You can redistribute it and/or modify it under the terms ofthe GNU General Public License as published by the Free Software Foundation.Either version 2 of the License, or (at your option) any later version.*/#ifndef LOGGING_H#define LOGGING_Hint openlogfile(char* filename,char* progname,int facility,int level);// if filename if 0, "" or "syslog": opens syslog. Level is ignored.// else: opens a log file. Facility is not used. Level specifies the verbosity (9=highest).// If the filename is a number it is interpreted as the file handle and // duplicated. The file must be already open. // Returns the file handle to the log file.void closelogfile();// closes a log file.void writelogfile0(int severity, char *progname, char *text);void writelogfile(int severity,char* progname,char* format, ...);// write to a log file. 2nd and following arguments are like in printf.#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?