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
ebd28d50
Commit
ebd28d50
authored
Nov 22, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 23, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp60: Make some codecvt_xxx() functions static or remove them.
parent
479b7bcf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
24 deletions
+1
-24
locale.c
dlls/msvcp60/locale.c
+1
-21
msvcp.h
dlls/msvcp60/msvcp.h
+0
-3
No files found.
dlls/msvcp60/locale.c
View file @
ebd28d50
...
...
@@ -2551,15 +2551,6 @@ int __thiscall codecvt_char_do_unshift(const codecvt_char *this,
return
CODECVT_noconv
;
}
/* ?unshift@?$codecvt@DDH@std@@QBEHAAHPAD1AAPAD@Z */
/* ?unshift@?$codecvt@DDH@std@@QEBAHAEAHPEAD1AEAPEAD@Z */
int
codecvt_char_unshift
(
const
codecvt_char
*
this
,
int
*
state
,
char
*
to
,
char
*
to_end
,
char
**
to_next
)
{
TRACE
(
"(%p %p %p %p %p)
\n
"
,
this
,
state
,
to
,
to_end
,
to_next
);
return
call_codecvt_char_do_unshift
(
this
,
state
,
to
,
to_end
,
to_next
);
}
/* ?do_length@?$codecvt@DDH@std@@MBEHABHPBD1I@Z */
/* ?do_length@?$codecvt@DDH@std@@MEBAHAEBHPEBD1_K@Z */
#define call_codecvt_char_do_length(this, state, from, from_end, max) CALL_VTBL_FUNC(this, 28, \
...
...
@@ -2696,7 +2687,7 @@ static MSVCP_size_t codecvt_wchar__Getcat(const locale_facet **facet, const loca
return
LC_CTYPE
;
}
codecvt_wchar
*
codecvt_wchar_use_facet
(
const
locale
*
loc
)
static
codecvt_wchar
*
codecvt_wchar_use_facet
(
const
locale
*
loc
)
{
static
codecvt_wchar
*
obj
=
NULL
;
...
...
@@ -2926,17 +2917,6 @@ int __thiscall codecvt_wchar_do_unshift(const codecvt_wchar *this,
return
CODECVT_ok
;
}
/* ?unshift@?$codecvt@GDH@std@@QBEHAAHPAD1AAPAD@Z */
/* ?unshift@?$codecvt@GDH@std@@QEBAHAEAHPEAD1AEAPEAD@Z */
/* ?unshift@?$codecvt@_WDH@std@@QBEHAAHPAD1AAPAD@Z */
/* ?unshift@?$codecvt@_WDH@std@@QEBAHAEAHPEAD1AEAPEAD@Z */
int
codecvt_wchar_unshift
(
const
codecvt_wchar
*
this
,
int
*
state
,
char
*
to
,
char
*
to_end
,
char
**
to_next
)
{
TRACE
(
"(%p %p %p %p %p)
\n
"
,
this
,
state
,
to
,
to_end
,
to_next
);
return
call_codecvt_wchar_do_unshift
(
this
,
state
,
to
,
to_end
,
to_next
);
}
/* ?do_length@?$codecvt@GDH@std@@MBEHABHPBD1I@Z */
/* ?do_length@?$codecvt@GDH@std@@MEBAHAEBHPEBD1_K@Z */
/* ?do_length@?$codecvt@_WDH@std@@MBEHABHPBD1I@Z */
...
...
dlls/msvcp60/msvcp.h
View file @
ebd28d50
...
...
@@ -107,7 +107,6 @@ typedef struct {
}
codecvt_char
;
MSVCP_bool
__thiscall
codecvt_base_always_noconv
(
const
codecvt_base
*
);
int
codecvt_char_unshift
(
const
codecvt_char
*
,
int
*
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_char_out
(
const
codecvt_char
*
,
int
*
,
const
char
*
,
const
char
*
,
const
char
**
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_char_in
(
const
codecvt_char
*
,
int
*
,
const
char
*
,
...
...
@@ -125,7 +124,6 @@ typedef struct {
_Cvtvec
cvt
;
}
codecvt_wchar
;
int
codecvt_wchar_unshift
(
const
codecvt_wchar
*
,
int
*
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_wchar_out
(
const
codecvt_wchar
*
,
int
*
,
const
wchar_t
*
,
const
wchar_t
*
,
const
wchar_t
**
,
char
*
,
char
*
,
char
**
);
int
__thiscall
codecvt_wchar_in
(
const
codecvt_wchar
*
,
int
*
,
const
char
*
,
...
...
@@ -171,7 +169,6 @@ void __thiscall locale_dtor(locale*);
void
free_locale
(
void
);
locale
*
__thiscall
locale__Addfac
(
locale
*
,
locale_facet
*
,
MSVCP_size_t
,
MSVCP_size_t
);
codecvt_char
*
codecvt_char_use_facet
(
const
locale
*
);
codecvt_wchar
*
codecvt_wchar_use_facet
(
const
locale
*
);
codecvt_wchar
*
codecvt_short_use_facet
(
const
locale
*
);
ctype_char
*
ctype_char_use_facet
(
const
locale
*
);
ctype_wchar
*
ctype_wchar_use_facet
(
const
locale
*
);
...
...
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