Commit 3f26eb44 authored by Alexandre Julliard's avatar Alexandre Julliard

wmc: Get rid of some unused codepage information.

parent 5330878d
......@@ -26,14 +26,12 @@
typedef struct language {
unsigned id;
unsigned doscp;
unsigned wincp;
const char *name;
const char *country;
} language_t;
void show_languages(void);
const language_t *find_language(unsigned id);
void show_codepages(void);
int is_valid_codepage(int id);
int wmc_mbstowcs( int codepage, int flags, const char *src, int srclen, WCHAR *dst, int dstlen );
int wmc_wcstombs( int codepage, int flags, const WCHAR *src, int srclen, char *dst, int dstlen );
......
......@@ -253,7 +253,6 @@ int main(int argc,char *argv[])
break;
case 'v':
show_languages();
show_codepages();
exit(0);
/* No return */
case 'V':
......
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