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
bd7c0d14
Commit
bd7c0d14
authored
Feb 15, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 15, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mspatcha: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
077b5942
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
7 deletions
+6
-7
Makefile.in
dlls/mspatcha/Makefile.in
+0
-1
mspatcha_main.c
dlls/mspatcha/mspatcha_main.c
+5
-5
pa19.c
dlls/mspatcha/pa19.c
+1
-1
No files found.
dlls/mspatcha/Makefile.in
View file @
bd7c0d14
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
mspatcha.dll
IMPORTLIB
=
mspatcha
...
...
dlls/mspatcha/mspatcha_main.c
View file @
bd7c0d14
...
...
@@ -212,7 +212,7 @@ BOOL WINAPI GetFilePatchSignatureA(LPCSTR filename, ULONG flags, PVOID data, ULO
PPATCH_IGNORE_RANGE
ignore_range
,
ULONG
retain_range_count
,
PPATCH_RETAIN_RANGE
retain_range
,
ULONG
bufsize
,
LPSTR
buffer
)
{
FIXME
(
"stub - %s, %
x, %p, %u, %p, %u, %p, %
u, %p
\n
"
,
debugstr_a
(
filename
),
flags
,
data
,
FIXME
(
"stub - %s, %
lx, %p, %lu, %p, %lu, %p, %l
u, %p
\n
"
,
debugstr_a
(
filename
),
flags
,
data
,
ignore_range_count
,
ignore_range
,
retain_range_count
,
retain_range
,
bufsize
,
buffer
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
...
...
@@ -225,7 +225,7 @@ BOOL WINAPI GetFilePatchSignatureW(LPCWSTR filename, ULONG flags, PVOID data, UL
PPATCH_IGNORE_RANGE
ignore_range
,
ULONG
retain_range_count
,
PPATCH_RETAIN_RANGE
retain_range
,
ULONG
bufsize
,
LPWSTR
buffer
)
{
FIXME
(
"stub - %s, %
x, %p, %u, %p, %u, %p, %
u, %p
\n
"
,
debugstr_w
(
filename
),
flags
,
data
,
FIXME
(
"stub - %s, %
lx, %p, %lu, %p, %lu, %p, %l
u, %p
\n
"
,
debugstr_w
(
filename
),
flags
,
data
,
ignore_range_count
,
ignore_range
,
retain_range_count
,
retain_range
,
bufsize
,
buffer
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
...
...
@@ -238,7 +238,7 @@ BOOL WINAPI GetFilePatchSignatureByHandle(HANDLE handle, ULONG flags, PVOID opti
PPATCH_IGNORE_RANGE
ignore_range
,
ULONG
retain_range_count
,
PPATCH_RETAIN_RANGE
retain_range
,
ULONG
bufsize
,
LPSTR
buffer
)
{
FIXME
(
"stub - %p, %
x, %p, %u, %p, %u, %p, %
u, %p
\n
"
,
handle
,
flags
,
options
,
FIXME
(
"stub - %p, %
lx, %p, %lu, %p, %lu, %p, %l
u, %p
\n
"
,
handle
,
flags
,
options
,
ignore_range_count
,
ignore_range
,
retain_range_count
,
retain_range
,
bufsize
,
buffer
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
...
...
@@ -252,7 +252,7 @@ BOOL WINAPI GetFilePatchSignatureByBuffer(PBYTE file_buf, ULONG file_size, ULONG
ULONG
retain_range_count
,
PPATCH_RETAIN_RANGE
retain_range
,
ULONG
bufsize
,
LPSTR
buffer
)
{
FIXME
(
"stub - %p, %
u, %x, %p, %u, %p, %u, %p, %
u, %p
\n
"
,
file_buf
,
file_size
,
flags
,
options
,
FIXME
(
"stub - %p, %
lu, %lx, %p, %lu, %p, %lu, %p, %l
u, %p
\n
"
,
file_buf
,
file_size
,
flags
,
options
,
ignore_range_count
,
ignore_range
,
retain_range_count
,
retain_range
,
bufsize
,
buffer
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
...
...
@@ -265,7 +265,7 @@ INT WINAPI NormalizeFileForPatchSignature(PVOID file_buffer, ULONG file_size, UL
ULONG
new_coff_base
,
ULONG
new_coff_time
,
ULONG
ignore_range_count
,
PPATCH_IGNORE_RANGE
ignore_range
,
ULONG
retain_range_count
,
PPATCH_RETAIN_RANGE
retain_range
)
{
FIXME
(
"stub - %p, %
u, %x, %p, %u, %u, %u, %p, %
u, %p
\n
"
,
file_buffer
,
file_size
,
flags
,
options
,
new_coff_base
,
FIXME
(
"stub - %p, %
lu, %lx, %p, %lu, %lu, %lu, %p, %l
u, %p
\n
"
,
file_buffer
,
file_size
,
flags
,
options
,
new_coff_base
,
new_coff_time
,
ignore_range_count
,
ignore_range
,
retain_range_count
,
retain_range
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
...
...
dlls/mspatcha/pa19.c
View file @
bd7c0d14
...
...
@@ -278,7 +278,7 @@ static int read_header(struct patch_file_header *ph, const BYTE *buf, size_t siz
ph
->
flags
=
read_raw_uint32
(
ph
);
if
((
ph
->
flags
&
PATCH_OPTION_SUPPORTED_FLAGS
)
!=
ph
->
flags
)
{
FIXME
(
"unsupported option flag(s): 0x%08x
\n
"
,
ph
->
flags
&
~
PATCH_OPTION_SUPPORTED_FLAGS
);
FIXME
(
"unsupported option flag(s): 0x%08
l
x
\n
"
,
ph
->
flags
&
~
PATCH_OPTION_SUPPORTED_FLAGS
);
ph
->
err
=
ERROR_PATCH_PACKAGE_UNSUPPORTED
;
return
-
1
;
}
...
...
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