mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
65ce146169
svn path=/branches/ros-csrss/; revision=57561
17 lines
314 B
C
17 lines
314 B
C
/* $Id$
|
|
*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS
|
|
* FILE: lib/smdll/dllmain.c
|
|
* PURPOSE: SM Helper Library
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
BOOL WINAPI DllMainCRTStartup(HANDLE hinstDll, DWORD fdwReason, LPVOID fImpLoad)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
/* EOF */
|