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
9bb24b8f
Commit
9bb24b8f
authored
Feb 13, 2009
by
Jeremy White
Committed by
Alexandre Julliard
Feb 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sane.ds: Implement stub support for ICAP_PIXELFLAVOR.
parent
4b794bee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
2 deletions
+52
-2
capability.c
dlls/sane.ds/capability.c
+49
-1
dsm.c
dlls/twain_32/tests/dsm.c
+3
-1
No files found.
dlls/sane.ds/capability.c
View file @
9bb24b8f
...
...
@@ -126,7 +126,7 @@ static TW_UINT16 TWAIN_GetSupportedCaps(pTW_CAPABILITY pCapability)
{
TW_ARRAY
*
a
;
static
const
UINT16
supported_caps
[]
=
{
CAP_SUPPORTEDCAPS
,
CAP_XFERCOUNT
,
CAP_UICONTROLLABLE
,
ICAP_XFERMECH
,
ICAP_PIXELTYPE
,
ICAP_COMPRESSION
};
ICAP_XFERMECH
,
ICAP_PIXELTYPE
,
ICAP_COMPRESSION
,
ICAP_PIXELFLAVOR
};
pCapability
->
hContainer
=
GlobalAlloc
(
0
,
FIELD_OFFSET
(
TW_ARRAY
,
ItemList
[
sizeof
(
supported_caps
)]
));
pCapability
->
ConType
=
TWON_ARRAY
;
...
...
@@ -345,6 +345,50 @@ static TW_UINT16 SANE_ICAPCompression (pTW_CAPABILITY pCapability, TW_UINT16 act
return
twCC
;
}
/* ICAP_PIXELFLAVOR */
static
TW_UINT16
SANE_ICAPPixelFlavor
(
pTW_CAPABILITY
pCapability
,
TW_UINT16
action
)
{
static
const
TW_UINT32
possible_values
[]
=
{
TWPF_CHOCOLATE
,
TWPF_VANILLA
};
TW_UINT32
val
;
TW_UINT16
twCC
=
TWCC_BADCAP
;
TRACE
(
"ICAP_PIXELFLAVOR
\n
"
);
switch
(
action
)
{
case
MSG_QUERYSUPPORT
:
twCC
=
set_onevalue
(
pCapability
,
TWTY_INT32
,
TWQC_GET
|
TWQC_SET
|
TWQC_GETDEFAULT
|
TWQC_GETCURRENT
|
TWQC_RESET
);
break
;
case
MSG_GET
:
twCC
=
msg_get_enum
(
pCapability
,
possible_values
,
sizeof
(
possible_values
)
/
sizeof
(
possible_values
[
0
]),
TWTY_UINT16
,
TWPF_CHOCOLATE
,
TWPF_CHOCOLATE
);
break
;
case
MSG_SET
:
twCC
=
msg_set
(
pCapability
,
&
val
);
if
(
twCC
==
TWCC_SUCCESS
)
{
FIXME
(
"Stub: PIXELFLAVOR set to %d, but ignored
\n
"
,
val
);
}
break
;
case
MSG_GETDEFAULT
:
twCC
=
set_onevalue
(
pCapability
,
TWTY_UINT16
,
TWPF_CHOCOLATE
);
break
;
case
MSG_RESET
:
/* .. fall through intentional .. */
case
MSG_GETCURRENT
:
twCC
=
set_onevalue
(
pCapability
,
TWTY_UINT16
,
TWPF_CHOCOLATE
);
break
;
}
return
twCC
;
}
TW_UINT16
SANE_SaneCapability
(
pTW_CAPABILITY
pCapability
,
TW_UINT16
action
)
{
TW_UINT16
twCC
=
TWCC_CAPUNSUPPORTED
;
...
...
@@ -376,6 +420,10 @@ TW_UINT16 SANE_SaneCapability (pTW_CAPABILITY pCapability, TW_UINT16 action)
twCC
=
SANE_ICAPXferMech
(
pCapability
,
action
);
break
;
case
ICAP_PIXELFLAVOR
:
twCC
=
SANE_ICAPPixelFlavor
(
pCapability
,
action
);
break
;
case
ICAP_COMPRESSION
:
twCC
=
SANE_ICAPCompression
(
pCapability
,
action
);
break
;
...
...
dlls/twain_32/tests/dsm.c
View file @
9bb24b8f
...
...
@@ -333,8 +333,10 @@ static void test_single_source(TW_IDENTITY *appid, TW_IDENTITY *source)
ok
(
capabilities
[
ICAP_PHYSICALHEIGHT
],
"ICAP_PHYSICALHEIGHT not supported
\n
"
);
todo_wine
ok
(
capabilities
[
ICAP_PHYSICALWIDTH
],
"ICAP_PHYSICALWIDTH not supported
\n
"
);
todo_wine
ok
(
capabilities
[
ICAP_PIXELFLAVOR
],
"ICAP_PIXELFLAVOR not supported
\n
"
);
if
(
capabilities
[
ICAP_PIXELFLAVOR
])
test_onevalue_cap
(
appid
,
source
,
ICAP_PIXELFLAVOR
,
TWTY_UINT16
,
TWQC_GET
|
TWQC_SET
|
TWQC_GETDEFAULT
|
TWQC_GETCURRENT
|
TWQC_RESET
);
/* For Twain 1.6:
Sources that supply image information must support DG_CONTROL / DAT_CAPABILITY /
...
...
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