mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:55:42 +00:00
Added MSGBOX and TIMER commands.
svn path=/trunk/; revision=633
This commit is contained in:
parent
e31d342bc7
commit
ff511b446a
13 changed files with 616 additions and 152 deletions
|
@ -30,7 +30,7 @@
|
|||
#include <tchar.h>
|
||||
|
||||
|
||||
#define CMD_VER "0.1 pre 5"
|
||||
#define CMD_VER "0.1 pre 6"
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define SHELLVER "Version " CMD_VER " [" __DATE__ ", msc]"
|
||||
|
@ -259,6 +259,8 @@ extern TCHAR cDecimalSeparator;
|
|||
extern INT nNumberGroups;
|
||||
|
||||
VOID InitLocale (VOID);
|
||||
VOID PrintDate (VOID);
|
||||
VOID PrintTime (VOID);
|
||||
|
||||
|
||||
/* Prototypes for MISC.C */
|
||||
|
@ -277,6 +279,10 @@ BOOL FileGetString (HANDLE, LPTSTR, INT);
|
|||
INT cmd_move (LPTSTR, LPTSTR);
|
||||
|
||||
|
||||
/* Prototypes for MSGBOX.C */
|
||||
INT CommandMsgbox (LPTSTR, LPTSTR);
|
||||
|
||||
|
||||
/* Prototypes from PATH.C */
|
||||
INT cmd_path (LPTSTR, LPTSTR);
|
||||
|
||||
|
@ -311,6 +317,10 @@ INT cmd_start (LPTSTR, LPTSTR);
|
|||
INT cmd_time (LPTSTR, LPTSTR);
|
||||
|
||||
|
||||
/* Prototypes for TIMER.C */
|
||||
INT CommandTimer (LPTSTR cmd, LPTSTR param);
|
||||
|
||||
|
||||
/* Prototypes for TITLE.C */
|
||||
INT cmd_title (LPTSTR, LPTSTR);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue