reactos/dll/win32/rasadhlp/init.c
Amine Khaldi 527f2f9057 [SHELL/EXPERIMENTS]
* Create a branch for some evul shell experiments.

svn path=/branches/shell-experiments/; revision=61927
2014-02-02 19:37:27 +00:00

28 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;
}