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
8800772f
Commit
8800772f
authored
Mar 30, 2011
by
Hans Leidekker
Committed by
Alexandre Julliard
Mar 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscms: Trace the CMM id as a string.
parent
5dbf6359
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
stub.c
dlls/mscms/stub.c
+5
-5
No files found.
dlls/mscms/stub.c
View file @
8800772f
...
@@ -137,21 +137,21 @@ BOOL WINAPI GetPS2ColorSpaceArray( HPROFILE profile, DWORD intent, DWORD type, P
...
@@ -137,21 +137,21 @@ BOOL WINAPI GetPS2ColorSpaceArray( HPROFILE profile, DWORD intent, DWORD type, P
BOOL
WINAPI
RegisterCMMA
(
PCSTR
machine
,
DWORD
id
,
PCSTR
dll
)
BOOL
WINAPI
RegisterCMMA
(
PCSTR
machine
,
DWORD
id
,
PCSTR
dll
)
{
{
FIXME
(
"( %p,
0x%08x, %p ) stub
\n
"
,
machine
,
id
,
dll
);
FIXME
(
"( %p,
%s, %p ) stub
\n
"
,
machine
,
MSCMS_dbgstr_tag
(
id
)
,
dll
);
return
TRUE
;
return
TRUE
;
}
}
BOOL
WINAPI
RegisterCMMW
(
PCWSTR
machine
,
DWORD
id
,
PCWSTR
dll
)
BOOL
WINAPI
RegisterCMMW
(
PCWSTR
machine
,
DWORD
id
,
PCWSTR
dll
)
{
{
FIXME
(
"( %p,
0x%08x, %p ) stub
\n
"
,
machine
,
id
,
dll
);
FIXME
(
"( %p,
%s, %p ) stub
\n
"
,
machine
,
MSCMS_dbgstr_tag
(
id
)
,
dll
);
return
TRUE
;
return
TRUE
;
}
}
BOOL
WINAPI
SelectCMM
(
DWORD
id
)
BOOL
WINAPI
SelectCMM
(
DWORD
id
)
{
{
FIXME
(
"(%
x) stub
\n
"
,
id
);
FIXME
(
"(%
s) stub
\n
"
,
MSCMS_dbgstr_tag
(
id
)
);
return
TRUE
;
return
TRUE
;
}
}
...
@@ -190,14 +190,14 @@ BOOL WINAPI SpoolerCopyFileEvent( LPWSTR printer, LPWSTR key, DWORD event )
...
@@ -190,14 +190,14 @@ BOOL WINAPI SpoolerCopyFileEvent( LPWSTR printer, LPWSTR key, DWORD event )
BOOL
WINAPI
UnregisterCMMA
(
PCSTR
machine
,
DWORD
id
)
BOOL
WINAPI
UnregisterCMMA
(
PCSTR
machine
,
DWORD
id
)
{
{
FIXME
(
"( %p,
0x%08x ) stub
\n
"
,
machine
,
id
);
FIXME
(
"( %p,
%s ) stub
\n
"
,
machine
,
MSCMS_dbgstr_tag
(
id
)
);
return
TRUE
;
return
TRUE
;
}
}
BOOL
WINAPI
UnregisterCMMW
(
PCWSTR
machine
,
DWORD
id
)
BOOL
WINAPI
UnregisterCMMW
(
PCWSTR
machine
,
DWORD
id
)
{
{
FIXME
(
"( %p,
0x%08x ) stub
\n
"
,
machine
,
id
);
FIXME
(
"( %p,
%s ) stub
\n
"
,
machine
,
MSCMS_dbgstr_tag
(
id
)
);
return
TRUE
;
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