mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 01:00:06 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
16 lines
314 B
C
16 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 <windows.h>
|
|
|
|
BOOL WINAPI DllMainCRTStartup(HANDLE hinstDll, DWORD fdwReason, LPVOID fImpLoad)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
/* EOF */
|