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
0cddf6fe
Commit
0cddf6fe
authored
May 19, 2021
by
Huw Davies
Committed by
Alexandre Julliard
May 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winspool: Forward EnumFormsA() to EnumFormsW().
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fc947eef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
info.c
dlls/winspool.drv/info.c
+13
-5
No files found.
dlls/winspool.drv/info.c
View file @
0cddf6fe
...
...
@@ -7457,12 +7457,20 @@ BOOL WINAPI DeletePrintProvidorW(LPWSTR pName, LPWSTR pEnvironment, LPWSTR pPrin
/******************************************************************************
* EnumFormsA (WINSPOOL.@)
*/
BOOL
WINAPI
EnumFormsA
(
HANDLE
hPrinter
,
DWORD
Level
,
LPBYTE
pForm
,
DWORD
cbBuf
,
LPDWORD
pcbNeeded
,
LPDWORD
pcReturned
)
BOOL
WINAPI
EnumFormsA
(
HANDLE
printer
,
DWORD
level
,
BYTE
*
form
,
DWORD
size
,
DWORD
*
needed
,
DWORD
*
count
)
{
FIXME
(
"%p %x %p %x %p %p
\n
"
,
hPrinter
,
Level
,
pForm
,
cbBuf
,
pcbNeeded
,
pcReturned
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
const
DWORD
*
string_info
=
form_string_info
(
level
);
BOOL
ret
;
DWORD
i
;
if
(
!
string_info
)
return
FALSE
;
ret
=
EnumFormsW
(
printer
,
level
,
form
,
size
,
needed
,
count
);
if
(
ret
)
for
(
i
=
0
;
i
<
*
count
;
i
++
)
packed_struct_WtoA
(
form
+
i
*
string_info
[
0
],
string_info
);
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