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
4c9d8e19
Commit
4c9d8e19
authored
Mar 07, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lcms2: Revert some calling convention changes.
We require -mabi=ms now. Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b75e3890
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
lcms2.h
libs/lcms2/include/lcms2.h
+1
-1
lcms2_plugin.h
libs/lcms2/include/lcms2_plugin.h
+2
-2
cmserr.c
libs/lcms2/src/cmserr.c
+1
-1
cmslut.c
libs/lcms2/src/cmslut.c
+1
-1
cmsplugin.c
libs/lcms2/src/cmsplugin.c
+1
-1
No files found.
libs/lcms2/include/lcms2.h
View file @
4c9d8e19
...
...
@@ -1234,7 +1234,7 @@ CMSAPI void CMSEXPORT cmsPipelineUnlinkStage(cmsPipeline* lut, cmsS
// then a list of expected types followed with a list of double pointers to Stage elements. If
// the function founds a match with current pipeline, it fills the pointers and returns TRUE
// if not, returns FALSE without touching anything.
CMSAPI
cmsBool
WINAPIV
cmsPipelineCheckAndRetreiveStages
(
const
cmsPipeline
*
Lut
,
cmsUInt32Number
n
,
...);
CMSAPI
cmsBool
CMSEXPORT
cmsPipelineCheckAndRetreiveStages
(
const
cmsPipeline
*
Lut
,
cmsUInt32Number
n
,
...);
// Matrix has double precision and CLUT has only float precision. That is because an ICC profile can encode
// matrices with far more precision that CLUTS
...
...
libs/lcms2/include/lcms2_plugin.h
View file @
4c9d8e19
...
...
@@ -102,7 +102,7 @@ CMSAPI void CMSEXPORT cmsMD5finish(cmsProfileID* ProfileID, cmsHAN
// Error logging -------------------------------------------------------------------------------------
CMSAPI
void
WINAPIV
cmsSignalError
(
cmsContext
ContextID
,
cmsUInt32Number
ErrorCode
,
const
char
*
ErrorText
,
...);
CMSAPI
void
CMSEXPORT
cmsSignalError
(
cmsContext
ContextID
,
cmsUInt32Number
ErrorCode
,
const
char
*
ErrorText
,
...);
// Memory management ----------------------------------------------------------------------------------
...
...
@@ -174,7 +174,7 @@ CMSAPI cmsBool CMSEXPORT _cmsReadAlignment(cmsIOHANDLER* io);
CMSAPI
cmsBool
CMSEXPORT
_cmsWriteAlignment
(
cmsIOHANDLER
*
io
);
// To deal with text streams. 2K at most
CMSAPI
cmsBool
WINAPIV
_cmsIOPrintf
(
cmsIOHANDLER
*
io
,
const
char
*
frm
,
...);
CMSAPI
cmsBool
CMSEXPORT
_cmsIOPrintf
(
cmsIOHANDLER
*
io
,
const
char
*
frm
,
...);
// Fixed point helper functions
CMSAPI
cmsFloat64Number
CMSEXPORT
_cms8Fixed8toDouble
(
cmsUInt16Number
fixed8
);
...
...
libs/lcms2/src/cmserr.c
View file @
4c9d8e19
...
...
@@ -506,7 +506,7 @@ void CMSEXPORT cmsSetLogErrorHandler(cmsLogErrorHandlerFunction Fn)
// Log an error
// ErrorText is a text holding an english description of error.
void
WINAPIV
cmsSignalError
(
cmsContext
ContextID
,
cmsUInt32Number
ErrorCode
,
const
char
*
ErrorText
,
...)
void
CMSEXPORT
cmsSignalError
(
cmsContext
ContextID
,
cmsUInt32Number
ErrorCode
,
const
char
*
ErrorText
,
...)
{
va_list
args
;
char
Buffer
[
MAX_ERROR_MESSAGE_LEN
];
...
...
libs/lcms2/src/cmslut.c
View file @
4c9d8e19
...
...
@@ -107,7 +107,7 @@ void From16ToFloat(const cmsUInt16Number In[], cmsFloat32Number Out[], cmsUInt32
// the function founds a match with current pipeline, it fills the pointers and returns TRUE
// if not, returns FALSE without touching anything. Setting pointers to NULL does bypass
// the storage process.
cmsBool
WINAPIV
cmsPipelineCheckAndRetreiveStages
(
const
cmsPipeline
*
Lut
,
cmsUInt32Number
n
,
...)
cmsBool
CMSEXPORT
cmsPipelineCheckAndRetreiveStages
(
const
cmsPipeline
*
Lut
,
cmsUInt32Number
n
,
...)
{
va_list
args
;
cmsUInt32Number
i
;
...
...
libs/lcms2/src/cmsplugin.c
View file @
4c9d8e19
...
...
@@ -492,7 +492,7 @@ cmsBool CMSEXPORT _cmsWriteAlignment(cmsIOHANDLER* io)
// To deal with text streams. 2K at most
cmsBool
WINAPIV
_cmsIOPrintf
(
cmsIOHANDLER
*
io
,
const
char
*
frm
,
...)
cmsBool
CMSEXPORT
_cmsIOPrintf
(
cmsIOHANDLER
*
io
,
const
char
*
frm
,
...)
{
va_list
args
;
int
len
;
...
...
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