mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
23 lines
362 B
C
23 lines
362 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS WinSock DLL
|
|
* FILE: stubs.c
|
|
* PURPOSE: Stub functions
|
|
* PROGRAMMERS: Ge van Geldorp (ge@gse.nl)
|
|
* REVISIONS:
|
|
*/
|
|
|
|
#include <windef.h>
|
|
|
|
/*
|
|
* @unimplemented
|
|
*/
|
|
BOOL
|
|
WINAPI
|
|
DllMain(HINSTANCE InstDLL,
|
|
DWORD Reason,
|
|
LPVOID Reserved)
|
|
{
|
|
return TRUE;
|
|
}
|