GetForm function winspool
The GetForm function retrieves information about a specified form.
BOOL GetFormW(
_In_ HANDLE hPrinter,
_In_ LPWSTR pFormName,
_In_ DWORD Level,
_Out_ LPBYTE pForm,
_In_ DWORD cbBuf,
_Out_ LPDWORD pcbNeeded
);
Implementation
int GetForm(
int hPrinter,
Pointer<Utf16> pFormName,
int Level,
Pointer<Uint8> pForm,
int cbBuf,
Pointer<Uint32> pcbNeeded,
) => _GetForm(hPrinter, pFormName, Level, pForm, cbBuf, pcbNeeded);