msvcrt: Mark some data as constant.

oldstable
Dmitry Timoshkov 2008-05-27 21:58:52 +09:00 committed by Alexandre Julliard
parent 4e224e73c4
commit 5db7fd3706
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ int CDECL _cputs(const char* str)
#define CTRL_CHAR 2
#define SHIFT_CHAR 3
static struct {unsigned vk; unsigned ch[4][2];} enh_map[] = {
static const struct {unsigned vk; unsigned ch[4][2];} enh_map[] = {
{0x47, {{0xE0, 0x47}, {0x00, 0x97}, {0xE0, 0x77}, {0xE0, 0x47}}},
{0x48, {{0xE0, 0x48}, {0x00, 0x98}, {0xE0, 0x8D}, {0xE0, 0x48}}},
{0x49, {{0xE0, 0x49}, {0x00, 0x99}, {0xE0, 0x86}, {0xE0, 0x49}}},