Previous Next

DeletePortUI

A port monitor UI DLL's DeletePortUI function deletes a printer port.

BOOL
  DeletePortUI(
    PCWSTR  pszServer,
    HWND  hWnd,
    PCWSTR  pszPortName
    );

Parameters

pszServer
Caller-supplied pointer to a string representing a server name, or NULL if the printer is local. (The port monitor can ignore this parameter.)
hWnd
Caller-supplied handle of the window that should be used as the parent for dialog boxes. If NULL, no dialog boxes should be displayed.
pszPortName
Caller-supplied pointer to a string representing the name of the port to be deleted.

Return Value

If the operation succeeds, the function should return TRUE. Otherwise it should return FALSE. If the operation is canceled by the user or is unsupported, the function should call SetLastError(ERROR_CANCELLED), then return FALSE.

Headers

Declared in winsplp.h. Include winsplp.h.

Comments

Port monitor UI DLLs are required to define a DeletePortUI function and include the function's address in a MONITORUI structure.

The spooler calls DeletePortUI from within its DeletePort function. The arguments received by DeletePortUI are the arguments received by DeletePort. (The DeletePort function is described in the Platform SDK documentation.)

The function should perform the following operations:

  1. Call OpenPrinter, specifying a printer name with the following format:

    \\ServerName\,XcvPort PortName

    where ServerName and PortName are the server and port names received as DeletePortUI function arguments.

    The call to OpenPrinter requires a PRINTER_DEFAULTS structure, which is described in the Platform SDK documentation. The structure's DesiredAccess member must be set to SERVER_ACCESS_ADMINISTER. Its pDatatype and pDevMode members can be NULL.

    This call causes the print monitor server DLL's XcvOpenPort function to be called.

  2. Call XcvData, specifying the following input arguments:

    This call causes the server DLL's XcvClosePort function to be called.

  3. If user interaction is required, obtain information from the user by displaying a dialog box and then call XcvData, specifying customized data name strings, to send the information to the server DLL. The XcvData call causes the server's XcvDataPort function to be called.
  4. Call ClosePrinter, specifying the handle received from OpenPrinter. This causes the server DLL's XcvClosePort function to be called.

See Also

XcvOpenPort, XcvClosePort, XcvData, XcvDataPort