mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
556 B
30 lines
556 B
/******************************Module*Header*******************************\
|
|
* Module Name: spooler.c
|
|
*
|
|
* spooler api's used by gre
|
|
*
|
|
* Created: 07-Nov-1994 08:29:10
|
|
* Author: Eric Kutter [erick]
|
|
*
|
|
* Copyright (c) 1993 Microsoft Corporation
|
|
*
|
|
\**************************************************************************/
|
|
|
|
#include "engine.h"
|
|
|
|
#include "server.h"
|
|
|
|
|
|
BOOL
|
|
WINAPI
|
|
ResetPrinterW(
|
|
HANDLE hPrinter,
|
|
LPPRINTER_DEFAULTSW pDefault
|
|
)
|
|
{
|
|
hPrinter;
|
|
pDefault;
|
|
|
|
DbgPrint("ResetPrinter called\n");
|
|
return(FALSE);
|
|
}
|