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
2fe189fd
Commit
2fe189fd
authored
Jul 24, 2007
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscms: Don't produce unreachable code during conditional compilation.
parent
837bd535
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
profile.c
dlls/mscms/profile.c
+4
-4
No files found.
dlls/mscms/profile.c
View file @
2fe189fd
...
...
@@ -305,7 +305,6 @@ BOOL WINAPI GetColorProfileFromHandle( HPROFILE profile, PBYTE buffer, PDWORD si
*/
BOOL
WINAPI
GetColorProfileHeader
(
HPROFILE
profile
,
PPROFILEHEADER
header
)
{
BOOL
ret
=
FALSE
;
#ifdef HAVE_LCMS
icProfile
*
iccprofile
=
MSCMS_hprofile2iccprofile
(
profile
);
...
...
@@ -316,8 +315,9 @@ BOOL WINAPI GetColorProfileHeader( HPROFILE profile, PPROFILEHEADER header )
MSCMS_get_profile_header
(
iccprofile
,
header
);
return
TRUE
;
#else
return
FALSE
;
#endif
/* HAVE_LCMS */
return
ret
;
}
/******************************************************************************
...
...
@@ -1065,7 +1065,6 @@ BOOL WINAPI SetColorProfileElement( HPROFILE profile, TAGTYPE type, DWORD offset
*/
BOOL
WINAPI
SetColorProfileHeader
(
HPROFILE
profile
,
PPROFILEHEADER
header
)
{
BOOL
ret
=
FALSE
;
#ifdef HAVE_LCMS
icProfile
*
iccprofile
=
MSCMS_hprofile2iccprofile
(
profile
);
DWORD
access
=
MSCMS_hprofile2access
(
profile
);
...
...
@@ -1078,8 +1077,9 @@ BOOL WINAPI SetColorProfileHeader( HPROFILE profile, PPROFILEHEADER header )
MSCMS_set_profile_header
(
iccprofile
,
header
);
return
TRUE
;
#else
return
FALSE
;
#endif
/* HAVE_LCMS */
return
ret
;
}
/******************************************************************************
...
...
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