AddForm function winspool

int AddForm(
  1. int hPrinter,
  2. int Level,
  3. Pointer<Uint8> pForm
)

The AddForm function adds a form to the list of available forms that can be selected for the specified printer.

BOOL AddFormW(
  _In_ HANDLE hPrinter,
  _In_ DWORD  Level,
  _In_ LPBYTE pForm
);

Implementation

int AddForm(int hPrinter, int Level, Pointer<Uint8> pForm) =>
    _AddForm(hPrinter, Level, pForm);