DeleteForm function winspool

int DeleteForm(
  1. int hPrinter,
  2. Pointer<Utf16> pFormName
)

The DeleteForm function removes a form name from the list of supported forms.

BOOL DeleteFormW(
  _In_ HANDLE hPrinter,
  _In_ LPTSTR pFormName
);

Implementation

int DeleteForm(int hPrinter, Pointer<Utf16> pFormName) =>
    _DeleteForm(hPrinter, pFormName);