mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
27 lines
603 B
C
27 lines
603 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS Winsock 2 SPI
|
|
* FILE: lib/mswsock/lib/init.c
|
|
* PURPOSE: DLL Initialization
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
BOOLEAN
|
|
WINAPI
|
|
DllMain(HINSTANCE Instance,
|
|
DWORD Reason,
|
|
LPVOID Reserved)
|
|
{
|
|
/* Check if we're being attached */
|
|
if (Reason == DLL_PROCESS_ATTACH)
|
|
{
|
|
/* Let's disable TLC calls as an optimization */
|
|
DisableThreadLibraryCalls(Instance);
|
|
}
|
|
|
|
/* We're done */
|
|
return TRUE;
|
|
}
|