-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: http://sanoi.webfactional.com/trunk@113 79def182-f41f-0410-b320-e94a04284523
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#ifndef _HINTSTRING_H | ||
#define _HINTSTRING_H | ||
|
||
#define HINTSTR_HISTORYUSAGE \ | ||
"Usage: /history [maxnumber|enable|list]\n\ | ||
Examp:/history maxnumber n (n : set max number of record history.) \n\ | ||
/history enable [on|off] (enable or disable history record.) \n\ | ||
/history list n[0-all] (n : list n of the histories,default n=10.\n\ | ||
if n=all,list all of the histories.)" | ||
|
||
#define HINTSTR_HISTORYMAXNUM(num) \ | ||
" Max number of histories is %d.", num | ||
|
||
#define HINTSTR_HISTORYENABLE(enable) \ | ||
" History record enable is %d.", enable | ||
|
||
#define HINTSTR_HISTORYLISTNUM(number) \ | ||
" History recorded number is %d.", number | ||
|
||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#ifndef _WARNINGSTRING_H | ||
#define _WARNINGSTRING_H | ||
|
||
#define WARNSTRING_CANTSAVEHISTORY \ | ||
("\ | ||
Can't save history infomation to ~/.fama/history file. \n\ | ||
Please check your permission. \n\ | ||
") | ||
|
||
#endif |