Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a8732ce6
Commit
a8732ce6
authored
Jun 13, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mspatcha: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
8997127c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
9 deletions
+5
-9
Makefile.in
dlls/mspatcha/Makefile.in
+2
-0
lzxd_dec.c
dlls/mspatcha/lzxd_dec.c
+0
-2
mspatcha_main.c
dlls/mspatcha/mspatcha_main.c
+0
-2
pa19.c
dlls/mspatcha/pa19.c
+3
-5
No files found.
dlls/mspatcha/Makefile.in
View file @
a8732ce6
MODULE
=
mspatcha.dll
IMPORTLIB
=
mspatcha
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
\
lzxd_dec.c
\
mspatcha_main.c
\
...
...
dlls/mspatcha/lzxd_dec.c
View file @
a8732ce6
...
...
@@ -21,8 +21,6 @@
* - Implememnt interleaved decoding
*/
#include "config.h"
#include <stdarg.h>
#include <assert.h>
...
...
dlls/mspatcha/mspatcha_main.c
View file @
a8732ce6
...
...
@@ -29,8 +29,6 @@
* solution to the above 32-bit exe problem.
*/
#include "config.h"
#include <stdarg.h>
#include "windef.h"
...
...
dlls/mspatcha/pa19.c
View file @
a8732ce6
...
...
@@ -32,8 +32,6 @@
* but not all, of the positions listed in the PE .reloc table.
*/
#include "config.h"
#include <stdarg.h>
#include <stdlib.h>
...
...
@@ -297,7 +295,7 @@ static INT64 read_svli(struct patch_file_header *ph)
return
n
;
}
static
int
compare_ignored_range
(
const
void
*
a
,
const
void
*
b
)
static
int
__cdecl
compare_ignored_range
(
const
void
*
a
,
const
void
*
b
)
{
LONG
delta
=
((
PATCH_IGNORE_RANGE
*
)
a
)
->
OffsetInOldFile
-
((
PATCH_IGNORE_RANGE
*
)
b
)
->
OffsetInOldFile
;
if
(
delta
>
0
)
...
...
@@ -307,7 +305,7 @@ static int compare_ignored_range(const void *a, const void *b)
return
0
;
}
static
int
compare_retained_range_old
(
const
void
*
a
,
const
void
*
b
)
static
int
__cdecl
compare_retained_range_old
(
const
void
*
a
,
const
void
*
b
)
{
LONG
delta
=
((
PATCH_RETAIN_RANGE
*
)
a
)
->
OffsetInOldFile
-
((
PATCH_RETAIN_RANGE
*
)
b
)
->
OffsetInOldFile
;
if
(
delta
>
0
)
...
...
@@ -317,7 +315,7 @@ static int compare_retained_range_old(const void *a, const void *b)
return
0
;
}
static
int
compare_retained_range_new
(
const
void
*
a
,
const
void
*
b
)
static
int
__cdecl
compare_retained_range_new
(
const
void
*
a
,
const
void
*
b
)
{
LONG
delta
=
((
PATCH_RETAIN_RANGE
*
)
a
)
->
OffsetInNewFile
-
((
PATCH_RETAIN_RANGE
*
)
b
)
->
OffsetInNewFile
;
if
(
delta
>
0
)
...
...
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