NT4/private/windows/spooler/splsetup/ntprint.c

64 lines
741 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
/*++
Copyright (c) 1995 Microsoft Corporation
All rights reserved.
Module Name:
Ntprint.c
Abstract:
Ntprint.dll main functions
Author:
Muhunthan Sivapragasam (MuhuntS) 02-Jan-1996
Revision History:
--*/
#include "precomp.h"
HINSTANCE ghInst;
BOOL
DllEntryPoint(
IN HINSTANCE hInst,
IN DWORD dwReason,
IN LPVOID lpRes
)
/*++
Routine Description:
Dll entry point.
Arguments:
Return Value:
--*/
{
UNREFERENCED_PARAMETER(lpRes);
switch( dwReason ){
case DLL_PROCESS_ATTACH:
ghInst = hInst;
break;
case DLL_PROCESS_DETACH:
break;
default:
return FALSE;
}
return TRUE;
}