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
9f19f75a
Commit
9f19f75a
authored
Feb 25, 2006
by
Saulius Krasuckas
Committed by
Alexandre Julliard
Feb 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mscms: One more LastError code fixed.
parent
50f3eaef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
profile.c
dlls/mscms/profile.c
+6
-0
profile.c
dlls/mscms/tests/profile.c
+0
-4
No files found.
dlls/mscms/profile.c
View file @
9f19f75a
...
...
@@ -423,6 +423,12 @@ BOOL WINAPI GetStandardColorSpaceProfileW( PCWSTR machine, DWORD id, PWSTR profi
return
FALSE
;
}
if
(
!
profile
)
{
SetLastError
(
ERROR_INSUFFICIENT_BUFFER
);
return
FALSE
;
}
GetColorDirectoryW
(
machine
,
rgbprofile
,
&
len
);
switch
(
id
)
...
...
dlls/mscms/tests/profile.c
View file @
9f19f75a
...
...
@@ -605,7 +605,6 @@ static void test_GetStandardColorSpaceProfileA(void)
if
(
query_colorspace
(
SPACE_RGB
))
{
todo_wine
fail_GSCSP
(
A
,
NULL
,
SPACE_RGB
,
NULL
,
&
size
,
sizeP
,
FALSE
,
(
GLE
==
ERROR_INSUFFICIENT_BUFFER
));
todo_wine
fail_GSCSP
(
A
,
NULL
,
SPACE_RGB
,
newprofile
,
&
size
,
0
,
FALSE
,
(
GLE
==
ERROR_MORE_DATA
||
GLE
==
ERROR_INSUFFICIENT_BUFFER
));
...
...
@@ -619,7 +618,6 @@ static void test_GetStandardColorSpaceProfileA(void)
/* Several invalid parameter checks */
fail_GSCSP
(
A
,
machine
,
0
,
newprofile
,
&
size
,
0
,
FALSE
,
(
GLE
==
ERROR_INVALID_PARAMETER
||
GLE
==
ERROR_NOT_SUPPORTED
));
fail_GSCSP
(
A
,
NULL
,
0
,
newprofile
,
NULL
,
0
,
FALSE
,
(
GLE
==
ERROR_INVALID_PARAMETER
));
todo_wine
fail_GSCSP
(
A
,
NULL
,
0
,
NULL
,
&
size
,
0
,
FALSE
,
(
GLE
==
ERROR_INSUFFICIENT_BUFFER
||
GLE
==
ERROR_FILE_NOT_FOUND
));
todo_wine
fail_GSCSP
(
A
,
NULL
,
0
,
newprofile
,
&
size
,
sizeP
,
TRUE
,
(
GLE
==
ERROR_FILE_NOT_FOUND
));
...
...
@@ -666,7 +664,6 @@ static void test_GetStandardColorSpaceProfileW(void)
fail_GSCSP
(
W
,
machineW
,
SPACE_RGB
,
newprofile
,
&
size
,
sizeP
,
FALSE
,
(
GLE
==
ERROR_NOT_SUPPORTED
));
todo_wine
fail_GSCSP
(
W
,
NULL
,
(
DWORD
)
-
1
,
newprofile
,
&
size
,
sizeP
,
FALSE
,
(
GLE
==
ERROR_FILE_NOT_FOUND
));
todo_wine
fail_GSCSP
(
W
,
NULL
,
SPACE_RGB
,
NULL
,
&
size
,
sizeP
,
FALSE
,
(
GLE
==
ERROR_INSUFFICIENT_BUFFER
));
fail_GSCSP
(
W
,
NULL
,
SPACE_RGB
,
newprofile
,
NULL
,
sizeP
,
FALSE
,
(
GLE
==
ERROR_INVALID_PARAMETER
));
todo_wine
...
...
@@ -675,7 +672,6 @@ static void test_GetStandardColorSpaceProfileW(void)
/* Several invalid parameter checks */
fail_GSCSP
(
W
,
machineW
,
0
,
newprofile
,
&
size
,
0
,
FALSE
,
(
GLE
==
ERROR_INVALID_PARAMETER
||
GLE
==
ERROR_NOT_SUPPORTED
));
fail_GSCSP
(
W
,
NULL
,
0
,
newprofile
,
NULL
,
0
,
FALSE
,
(
GLE
==
ERROR_INVALID_PARAMETER
));
todo_wine
fail_GSCSP
(
W
,
NULL
,
0
,
NULL
,
&
size
,
0
,
FALSE
,
(
GLE
==
ERROR_INSUFFICIENT_BUFFER
||
GLE
==
ERROR_FILE_NOT_FOUND
));
todo_wine
fail_GSCSP
(
W
,
NULL
,
0
,
newprofile
,
&
size
,
sizeP
,
TRUE
,
(
GLE
==
ERROR_FILE_NOT_FOUND
));
...
...
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