xref: /reactos/dll/win32/wsock32/stubs.c (revision b36d9bd9)
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS WinSock DLL
4  * FILE:        stubs.c
5  * PURPOSE:     Stub functions
6  * PROGRAMMERS: Ge van Geldorp (ge@gse.nl)
7  * REVISIONS:
8  */
9 
10 #include <windef.h>
11 
12 /*
13  * @unimplemented
14  */
15 BOOL
16 WINAPI
17 DllMain(HINSTANCE InstDLL,
18         DWORD Reason,
19         LPVOID Reserved)
20 {
21   return TRUE;
22 }
23