mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
15 lines
306 B
C
15 lines
306 B
C
/*
|
|
* 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 */
|