Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

63 lines
741 B

/*++
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;
}