windows-nt/Source/XPSP1/NT/ds/adsi/dbgexts/dbginit.c

49 lines
574 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
dbginit.c
Abstract:
Author:
Krishna Ganugapati (KrishnaG) 12-Dec-1994
Revision History:
--*/
#define NOMINMAX
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
#include <winspool.h>
#include <lm.h>
#include <stdlib.h>
#include <string.h>
HANDLE hInst;
BOOL
LibMain(
HANDLE hModule,
DWORD dwReason,
LPVOID lpRes
)
{
if (dwReason != DLL_PROCESS_ATTACH)
return TRUE;
hInst = hModule;
return TRUE;
UNREFERENCED_PARAMETER( lpRes );
}