?? viewrunninglog.c
字號:
#include "viewRunningLog.h"void viewRunningLog(GtkObject *window,gpointer data){ char fs[50]; bzero(fs,sizeof(fs)); strcat(fs,"gedit "); strcat(fs,httpLogFilePath); system(fs);}void viewDNSRunningLog(GtkObject *window,gpointer data){ char fs[50]; bzero(fs,sizeof(fs)); strcat(fs,"gedit "); strcat(fs,DNSLogFilePath); system(fs);}void viewSMTPRunningLog(GtkObject *window,gpointer data){ char fs[50]; bzero(fs,sizeof(fs)); strcat(fs,"gedit "); strcat(fs,SMTPLogFilePath); system(fs);}void viewPOP3RunningLog(GtkObject *window,gpointer data){ char fs[50]; bzero(fs,sizeof(fs)); strcat(fs,"gedit "); strcat(fs,POP3LogFilePath); system(fs);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -