XcvDataW (WINSPOOL.@)
BOOL XcvDataW ( HANDLE hXcv, LPCWSTR pszDataName, PBYTE pInputData, DWORD cbInputData, PBYTE pOutputData, DWORD cbOutputData, PDWORD pcbOutputNeeded, PDWORD pdwStatus )
Execute commands in the Printmonitor DLL.
hXcv | [In] | Handle from OpenPrinter (with XcvMonitor or XcvPort). |
pszDataName | [In] | Name of the command to execute. |
pInputData | [In] | Buffer for extra Input Data (needed only for some commands). |
cbInputData | [In] | Size in Bytes of Buffer at pInputData. |
pOutputData | [Out] | Buffer to receive additional Data (needed only for some commands). |
cbOutputData | [In] | Size in Bytes of Buffer at pOutputData. |
pcbOutputNeeded | [Out] | PTR to receive the minimal Size in Bytes of the Buffer at pOutputData. |
pdwStatus | [Out] | PTR to receive the Win32 error code from the Printmonitor DLL. |
Success: TRUE
Failure: FALSE.
Returning "TRUE" does mean, that the Printmonitor dll was called successful. The execution of the command can still fail (check pdwStatus for ERROR_SUCCESS).
Minimal List of commands, that a Printmonitor dll should support:
"MonitorUI" : Return the Name of the Userinterface-DLL as WSTR in pOutputData "AddPort" : Add a Port "DeletePort": Delete a Port.
Many Printmonitors support additional commands. Examples for localspl.dll: "GetDefaultCommConfig", "SetDefaultCommConfig", "GetTransmissionRetryTimeout", "ConfigureLPTPortCommandOK"
Declared in "include/winspool.h". gitlab.winehq.org/wine/wine/blob/master/include/winspool.h
Implemented in "dlls/winspool.drv/info.c". gitlab.winehq.org/wine/wine/blob/master/dlls/winspool.drv/info.c
Debug channel "winspool".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.