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
c861e038
Commit
c861e038
authored
Feb 08, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Feb 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spoolss: Implement EnumMonitors.
parent
857e9429
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
1 deletion
+64
-1
router.c
dlls/spoolss/router.c
+63
-0
spoolss.spec
dlls/spoolss/spoolss.spec
+1
-1
No files found.
dlls/spoolss/router.c
View file @
c861e038
...
@@ -271,3 +271,66 @@ BOOL backend_load_all(void)
...
@@ -271,3 +271,66 @@ BOOL backend_load_all(void)
return
(
pb
!=
NULL
);
return
(
pb
!=
NULL
);
}
}
/******************************************************************************
* backend_first [internal]
*
* find the first usable backend
*
* RETURNS
* Success: PTR to the backend
* Failure: NULL
*
*/
static
backend_t
*
backend_first
(
LPWSTR
name
)
{
/* test for the local system first */
if
(
!
name
||
!
name
[
0
])
return
backend
[
0
];
FIXME
(
"server %s not supported
\n
"
,
debugstr_w
(
name
));
return
NULL
;
}
/******************************************************************
* EnumMonitorsW (spoolss.@)
*
* Enumerate available Port-Monitors
*
* PARAMS
* pName [I] Servername or NULL (local Computer)
* Level [I] Structure-Level
* pMonitors [O] PTR to Buffer that receives the Result
* cbBuf [I] Size of Buffer at pMonitors
* pcbNeeded [O] PTR to DWORD that receives the size in Bytes used / required for pMonitors
* pcReturned [O] PTR to DWORD that receives the number of Monitors in pMonitors
*
* RETURNS
* Success: TRUE
* Failure: FALSE and in pcbNeeded the Bytes required for pMonitors, if cbBuf is too small
*
*/
BOOL
WINAPI
EnumMonitorsW
(
LPWSTR
pName
,
DWORD
Level
,
LPBYTE
pMonitors
,
DWORD
cbBuf
,
LPDWORD
pcbNeeded
,
LPDWORD
pcReturned
)
{
backend_t
*
pb
;
DWORD
res
=
ROUTER_UNKNOWN
;
TRACE
(
"(%s, %d, %p, %d, %p, %p)
\n
"
,
debugstr_w
(
pName
),
Level
,
pMonitors
,
cbBuf
,
pcbNeeded
,
pcReturned
);
if
(
pcbNeeded
)
*
pcbNeeded
=
0
;
if
(
pcReturned
)
*
pcReturned
=
0
;
pb
=
backend_first
(
pName
);
if
(
pb
&&
pb
->
fpEnumMonitors
)
res
=
pb
->
fpEnumMonitors
(
pName
,
Level
,
pMonitors
,
cbBuf
,
pcbNeeded
,
pcReturned
);
else
{
SetLastError
(
ERROR_PROC_NOT_FOUND
);
}
TRACE
(
"got %u with %u (%u byte for %u entries)
\n\n
"
,
res
,
GetLastError
(),
pcbNeeded
?
*
pcbNeeded
:
0
,
pcReturned
?
*
pcReturned
:
0
);
return
(
res
==
ROUTER_SUCCESS
);
}
dlls/spoolss/spoolss.spec
View file @
c861e038
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
@ stub EndPagePrinter
@ stub EndPagePrinter
@ stub EnumFormsW
@ stub EnumFormsW
@ stub EnumJobsW
@ stub EnumJobsW
@ st
ub EnumMonitorsW
@ st
dcall EnumMonitorsW(wstr long ptr long ptr ptr)
@ stub EnumPerMachineConnectionsW
@ stub EnumPerMachineConnectionsW
@ stdcall EnumPortsW(wstr long ptr ptr ptr ptr) winspool.drv.EnumPortsW
@ stdcall EnumPortsW(wstr long ptr ptr ptr ptr) winspool.drv.EnumPortsW
@ stub EnumPrintProcessorDatatypesW
@ stub EnumPrintProcessorDatatypesW
...
...
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