Author: spetreolle Date: Sun Jul 15 17:53:28 2007 New Revision: 27684
URL: http://svn.reactos.org/svn/reactos?rev=27684&view=rev Log: unicode compatibility
Modified: trunk/reactos/base/applications/shutdown/shutdown.c
Modified: trunk/reactos/base/applications/shutdown/shutdown.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/shutdown/... ============================================================================== --- trunk/reactos/base/applications/shutdown/shutdown.c (original) +++ trunk/reactos/base/applications/shutdown/shutdown.c Sun Jul 15 17:53:28 2007 @@ -13,13 +13,13 @@
// Print information about which commandline arguments the program accepts. static void PrintUsage() { - _tprintf("Usage: shutdown [-?] [-l | -s | -r] [-f]\n"); - _tprintf("\n No args or -?\t\tDisplay this message"); - _tprintf("\n -l\t\t\tLog off"); - _tprintf("\n -s\t\t\tShutdown the computer"); - _tprintf("\n -r\t\t\tShutdown and restart the computer"); - _tprintf("\n -f\t\t\tForces running applications to close without warnings"); - _tprintf("\n"); + _tprintf(_T("Usage: shutdown [-?] [-l | -s | -r] [-f]\n")); + _tprintf(_T("\n No args or -?\t\tDisplay this message")); + _tprintf(_T("\n -l\t\t\tLog off")); + _tprintf(_T("\n -s\t\t\tShutdown the computer")); + _tprintf(_T("\n -r\t\t\tShutdown and restart the computer")); + _tprintf(_T("\n -f\t\t\tForces running applications to close without warnings")); + _tprintf(_T("\n")); }
struct CommandLineOptions {