Build smdll with NDK
[reactos.git] / reactos / lib / smdll / dllmain.c
1 /* $Id$
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS
5 * FILE: lib/smdll/dllmain.c
6 * PURPOSE: SM Helper Library
7 */
8
9 #include <windows.h>
10
11 BOOL STDCALL DllMain(HANDLE hinstDll, DWORD fdwReason, LPVOID fImpLoad)
12 {
13 return TRUE;
14 }
15
16 /* EOF */