You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
361 B
26 lines
361 B
/*++
|
|
|
|
Copyright (c) 1988-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
cchcp.c
|
|
|
|
Abstract:
|
|
|
|
Not-immplemented messages for changing code page
|
|
|
|
--*/
|
|
|
|
#include "cmd.h"
|
|
|
|
|
|
int Chcp( command_line )
|
|
TCHAR *command_line;
|
|
{
|
|
DBG_UNREFERENCED_PARAMETER( command_line );
|
|
PutStdOut(MSG_NOT_IMPLEMENTED, NOARGS);
|
|
|
|
return( SUCCESS );
|
|
|
|
}
|