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
86b3056e
Commit
86b3056e
authored
Mar 17, 2004
by
Steven Edwards
Committed by
Alexandre Julliard
Mar 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add stubs for EnumMonitors[A/W].
parent
56aca378
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
info.c
dlls/winspool/info.c
+26
-0
winspool.drv.spec
dlls/winspool/winspool.drv.spec
+2
-2
No files found.
dlls/winspool/info.c
View file @
86b3056e
...
...
@@ -3836,6 +3836,32 @@ DWORD WINAPI DeletePrinterDataExA( HANDLE hPrinter, LPCSTR pKeyName,
return
ERROR_INVALID_PARAMETER
;
}
/*****************************************************************************
* EnumMonitorsA [WINSPOOL.@]
*
*/
BOOL
WINAPI
EnumMonitorsA
(
LPSTR
pName
,
DWORD
Level
,
LPBYTE
pMonitors
,
DWORD
cbBuf
,
LPDWORD
pcbNeeded
,
LPDWORD
pcReturned
)
{
FIXME
(
"%s,%ld,%p,%ld,%p,%p
\n
"
,
debugstr_a
(
pName
),
Level
,
pMonitors
,
cbBuf
,
pcbNeeded
,
pcReturned
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/*****************************************************************************
* EnumMonitorsW [WINSPOOL.@]
*
*/
BOOL
WINAPI
EnumMonitorsW
(
LPWSTR
pName
,
DWORD
Level
,
LPBYTE
pMonitors
,
DWORD
cbBuf
,
LPDWORD
pcbNeeded
,
LPDWORD
pcReturned
)
{
FIXME
(
"%s,%ld,%p,%ld,%p,%p
\n
"
,
debugstr_w
(
pName
),
Level
,
pMonitors
,
cbBuf
,
pcbNeeded
,
pcReturned
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
0
;
}
/******************************************************************************
* XcvDataW (WINSPOOL.@)
*
...
...
dlls/winspool/winspool.drv.spec
View file @
86b3056e
...
...
@@ -68,8 +68,8 @@
@ stub EnumFormsW
@ stdcall EnumJobsA(long long long long ptr long ptr ptr)
@ stdcall EnumJobsW(long long long long ptr long ptr ptr)
@ st
ub EnumMonitorsA
@ st
ub EnumMonitorsW
@ st
dcall EnumMonitorsA(str long ptr long long long)
@ st
dcall EnumMonitorsW(wstr long ptr long long long)
@ stdcall EnumPortsA(ptr long ptr ptr ptr ptr)
@ stub EnumPortsW
@ stub EnumPrintProcessorDatatypesA
...
...
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