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
8e304065
Commit
8e304065
authored
Apr 03, 2013
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 03, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
riched20: ME_StrDup() is not used anymore so remove it.
parent
adb8c861
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
6 deletions
+0
-6
editor.h
dlls/riched20/editor.h
+0
-1
string.c
dlls/riched20/string.c
+0
-5
No files found.
dlls/riched20/editor.h
View file @
8e304065
...
...
@@ -100,7 +100,6 @@ const char *ME_GetDITypeName(ME_DIType type) DECLSPEC_HIDDEN;
/* string.c */
ME_String
*
ME_MakeStringN
(
LPCWSTR
szText
,
int
nMaxChars
)
DECLSPEC_HIDDEN
;
ME_String
*
ME_MakeStringR
(
WCHAR
cRepeat
,
int
nMaxChars
)
DECLSPEC_HIDDEN
;
ME_String
*
ME_StrDup
(
const
ME_String
*
s
)
DECLSPEC_HIDDEN
;
void
ME_DestroyString
(
ME_String
*
s
)
DECLSPEC_HIDDEN
;
BOOL
ME_AppendString
(
ME_String
*
s
,
const
WCHAR
*
append
,
int
len
)
DECLSPEC_HIDDEN
;
ME_String
*
ME_VSplitString
(
ME_String
*
orig
,
int
nVPos
)
DECLSPEC_HIDDEN
;
...
...
dlls/riched20/string.c
View file @
8e304065
...
...
@@ -59,11 +59,6 @@ ME_String *ME_MakeStringR(WCHAR cRepeat, int nMaxChars)
return
s
;
}
ME_String
*
ME_StrDup
(
const
ME_String
*
s
)
{
return
ME_MakeStringN
(
s
->
szData
,
s
->
nLen
);
}
void
ME_DestroyString
(
ME_String
*
s
)
{
if
(
!
s
)
return
;
...
...
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