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
f66bf566
Commit
f66bf566
authored
Apr 11, 1999
by
Klaas van Gend
Committed by
Alexandre Julliard
Apr 11, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for PrinterProperties.
parent
d1f10c50
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-2
winspool.h
include/winspool.h
+1
-1
printdrv.c
misc/printdrv.c
+19
-0
winspool.spec
relay32/winspool.spec
+1
-1
No files found.
include/winspool.h
View file @
f66bf566
...
...
@@ -271,7 +271,7 @@ BOOL WINAPI EnumPrintersW(DWORD dwType, LPWSTR lpszName,
LPDWORD
lpdwReturned
);
#define EnumPrinters WINELIB_NAME_AW(EnumPrinters)
BOOL
WINAPI
PrinterProperties
(
HWND
hWnd
,
HANDLE
hPrinter
);
#ifdef __cplusplus
}
// extern "C"
...
...
misc/printdrv.c
View file @
f66bf566
...
...
@@ -1304,4 +1304,23 @@ BOOL WINAPI AddPrinterDriverW(LPWSTR printerName,DWORD level,
}
/*****************************************************************************
* PrinterProperties [WINSPOOL.201]
*
* Displays a dialog to set the properties of the printer.
*
* RETURNS
* nonzero on succes or zero on faillure
*
* BUGS
* implemented as stub only
*/
BOOL
WINAPI
PrinterProperties
(
HWND
hWnd
,
/* handle to parent window */
HANDLE
hPrinter
/* handle to printer object */
){
FIXME
(
print
,
"(%d,%d): stub
\n
"
,
hWnd
,
hPrinter
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
relay32/winspool.spec
View file @
f66bf566
...
...
@@ -101,7 +101,7 @@ type win32
198 stub PlayGdiScriptOnPrinterIC
199 stub PrinterMessageBoxA
200 stub PrinterMessageBoxW
201 st
ub
PrinterProperties
201 st
dcall PrinterProperties(long long)
PrinterProperties
202 stdcall ReadPrinter(long ptr long ptr) ReadPrinter
203 stdcall ResetPrinterA(long ptr) ResetPrinterA
204 stdcall ResetPrinterW(long ptr) ResetPrinterW
...
...
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