windows-nt/Source/XPSP1/NT/net/sfm/setup/resource/sfmres.c

56 lines
727 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
Copyright (c) 1990 Microsoft Corporation
Module Name:
atresdll.c
Abstract:
This module contians the DLL attach/detach event entry point for
the AppleTalk Setup resource DLL.
Author:
Ted Miller (tedm) July-1990
Revision History:
--*/
/*
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
*/
#include <windows.h>
HANDLE ThisDLLHandle;
BOOL
DLLInit(
IN HANDLE DLLHandle,
IN DWORD Reason,
IN LPVOID ReservedAndUnused
)
{
ReservedAndUnused;
switch(Reason) {
case DLL_PROCESS_ATTACH:
ThisDLLHandle = DLLHandle;
break;
case DLL_PROCESS_DETACH:
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
break;
}
return(TRUE);
}