Commit 1c994d49 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

wmc: Constify some data.

parent fcd6f662
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
#include "lang.h" #include "lang.h"
#include "write.h" #include "write.h"
static char usage[] = static const char usage[] =
"Usage: wmc [options...] [inputfile.mc]\n" "Usage: wmc [options...] [inputfile.mc]\n"
" -B x Set output byte-order x={n[ative], l[ittle], b[ig]}\n" " -B x Set output byte-order x={n[ative], l[ittle], b[ig]}\n"
" (default is n[ative] which equals " " (default is n[ative] which equals "
...@@ -58,7 +58,7 @@ static char usage[] = ...@@ -58,7 +58,7 @@ static char usage[] =
"bytes read, which should be 0x0000..0x00ff.\n" "bytes read, which should be 0x0000..0x00ff.\n"
; ;
static char version_string[] = static const char version_string[] =
"Wine Message Compiler version " PACKAGE_VERSION "\n" "Wine Message Compiler version " PACKAGE_VERSION "\n"
"Copyright 2000 Bertho A. Stultiens\n" "Copyright 2000 Bertho A. Stultiens\n"
; ;
......
...@@ -87,7 +87,7 @@ ...@@ -87,7 +87,7 @@
* for normal character strings and 1 for unicode strings. * for normal character strings and 1 for unicode strings.
*/ */
static char str_header[] = static const char str_header[] =
"/* This file is generated with wmc version " PACKAGE_VERSION ". Do not edit! */\n" "/* This file is generated with wmc version " PACKAGE_VERSION ". Do not edit! */\n"
"/* Source : %s */\n" "/* Source : %s */\n"
"/* Cmdline: %s */\n" "/* Cmdline: %s */\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment