FindNextPrinterChangeNotification function winspool

int FindNextPrinterChangeNotification(
  1. int hChange,
  2. Pointer<Uint32> pdwChange,
  3. Pointer<NativeType> pvReserved,
  4. Pointer<Pointer<NativeType>> ppPrinterNotifyInfo,
)

The FindNextPrinterChangeNotification function retrieves information about the most recent change notification for a change notification object associated with a printer or print server. Call this function when a wait operation on the change notification object is satisfied.

BOOL FindNextPrinterChangeNotification(
  _In_      HANDLE hChange,
  _Out_opt_ PDWORD pdwChange,
  _In_opt_  LPVOID pPrinterNotifyOptions,
  _Out_opt_ LPVOID *ppPrinterNotifyInfo
);

Implementation

int FindNextPrinterChangeNotification(int hChange, Pointer<Uint32> pdwChange,
        Pointer pvReserved, Pointer<Pointer> ppPrinterNotifyInfo) =>
    _FindNextPrinterChangeNotification(
        hChange, pdwChange, pvReserved, ppPrinterNotifyInfo);