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
53338081
Commit
53338081
authored
Mar 07, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscms: Fix a couple of compiler warnings when lcms is missing.
parent
81ae4182
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
profile.c
dlls/mscms/profile.c
+6
-2
stub.c
dlls/mscms/stub.c
+1
-1
No files found.
dlls/mscms/profile.c
View file @
53338081
...
...
@@ -127,9 +127,13 @@ static BOOL set_profile_device_key( PCWSTR file, const BYTE *value, DWORD size )
SetLastError
(
ERROR_INVALID_PROFILE
);
return
FALSE
;
}
if
(
!
GetColorProfileHeader
(
handle
,
&
header
))
{
CloseColorProfile
(
handle
);
SetLastError
(
ERROR_INVALID_PROFILE
);
return
FALSE
;
}
RegCreateKeyExW
(
HKEY_LOCAL_MACHINE
,
icmW
,
0
,
NULL
,
0
,
KEY_ALL_ACCESS
,
NULL
,
&
icm_key
,
NULL
);
GetColorProfileHeader
(
handle
,
&
header
);
MSCMS_basename
(
file
,
basenameW
);
sprintfW
(
classW
,
fmtW
,
(
header
.
phClass
>>
24
)
&
0xff
,
(
header
.
phClass
>>
16
)
&
0xff
,
...
...
dlls/mscms/stub.c
View file @
53338081
...
...
@@ -151,7 +151,7 @@ BOOL WINAPI RegisterCMMW( PCWSTR machine, DWORD id, PCWSTR dll )
BOOL
WINAPI
SelectCMM
(
DWORD
id
)
{
FIXME
(
"(
%s ) stub
\n
"
,
MSCMS_dbgstr_tag
(
id
)
);
FIXME
(
"(
%x) stub
\n
"
,
id
);
return
TRUE
;
}
...
...
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