windows-nt/Source/XPSP1/NT/printscan/print/spooler/inetpp2/server/ppchange.h

54 lines
972 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*****************************************************************************\
* MODULE: ppchange.h
*
* Prototypes for private funcions in ppchange.c. These functions handle
* notification support
*
*
* Copyright (C) 1996-1997 Microsoft Corporation
*
* History:
* 28-Apr-1998 Weihai Chen (weihaic)
*
\*****************************************************************************/
#ifndef _PPCHANGE_H
#define _PPCHANGE_H
#ifdef WINNT32
BOOL
AddHandleToList (
LPINET_HPRINTER hPrinter);
BOOL
DeleteHandleFromList (
LPINET_HPRINTER hPrinter);
void
RefreshNotificationPort (
HANDLE hPort
);
void
RefreshNotification (
LPINET_HPRINTER hPrinter);
BOOL
PPFindFirstPrinterChangeNotification(
HANDLE hPrinter,
DWORD fdwFlags,
DWORD fdwOptions,
HANDLE hNotify,
PDWORD pfdwStatus,
PVOID pPrinterNotifyOptions,
PVOID pPrinterNotifyInit);
BOOL
PPFindClosePrinterChangeNotification(
HANDLE hPrinter
);
#endif
#endif