Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3f26eb44
Commit
3f26eb44
authored
Jan 23, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmc: Get rid of some unused codepage information.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5330878d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
3 deletions
+0
-3
lang.c
tools/wmc/lang.c
+0
-0
lang.h
tools/wmc/lang.h
+0
-2
wmc.c
tools/wmc/wmc.c
+0
-1
No files found.
tools/wmc/lang.c
View file @
3f26eb44
This diff is collapsed.
Click to expand it.
tools/wmc/lang.h
View file @
3f26eb44
...
...
@@ -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
);
...
...
tools/wmc/wmc.c
View file @
3f26eb44
...
...
@@ -253,7 +253,6 @@ int main(int argc,char *argv[])
break
;
case
'v'
:
show_languages
();
show_codepages
();
exit
(
0
);
/* No return */
case
'V'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment