diff --git a/dlls/dpwsockx/Makefile.in b/dlls/dpwsockx/Makefile.in new file mode 100644 index 0000000..cebac28 --- /dev/null +++ b/dlls/dpwsockx/Makefile.in @@ -0,0 +1,13 @@ +TOPSRCDIR = @top_srcdir@ +TOPOBJDIR = ../.. +SRCDIR = @srcdir@ +VPATH = @srcdir@ +MODULE = dpwsockx.dll +IMPORTS = kernel32 + +C_SRCS = \ + dpwsockx_main.c + +@MAKE_DLL_RULES@ + +@DEPENDENCIES@ # everything below this line is overwritten by make depend diff --git a/dlls/dpwsockx/dpwsockx.spec b/dlls/dpwsockx/dpwsockx.spec new file mode 100644 index 0000000..5f84adc --- /dev/null +++ b/dlls/dpwsockx/dpwsockx.spec @@ -0,0 +1,3 @@ +1 stdcall SPInit(ptr) +3 stub DPWS_GetEnumPort +4 stub DPWS_BuildIPMessageHeader diff --git a/dlls/dpwsockx/dpwsockx_dll.h b/dlls/dpwsockx/dpwsockx_dll.h new file mode 100644 index 0000000..f275e5c --- /dev/null +++ b/dlls/dpwsockx/dpwsockx_dll.h @@ -0,0 +1,33 @@ +/* + * Copyright 2008 Ismael Barros Barros + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#ifndef __WINE_DPWSOCKX_DLL_H +#define __WINE_DPWSOCKX_DLL_H + +#include "windef.h" +#include "wine/debug.h" +#include "winbase.h" +#include "winnt.h" +#include "dplaysp.h" + + +HRESULT WINAPI SPInit( LPSPINITDATA ); + + + +#endif /* __WINE_DPWSOCKX_DLL_H */ diff --git a/dlls/dpwsockx/dpwsockx_main.c b/dlls/dpwsockx/dpwsockx_main.c new file mode 100644 index 0000000..a77b75c --- /dev/null +++ b/dlls/dpwsockx/dpwsockx_main.c @@ -0,0 +1,65 @@ +/* Internet TCP/IP and IPX Connection For DirectPlay + * + * Copyright 2008 Ismael Barros Barros + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +#include "config.h" + +#include + +#include "windef.h" +#include "winbase.h" +#include "dpwsockx_dll.h" +#include "wine/debug.h" +#include "dplay.h" +#include "dplaysp.h" + + +WINE_DEFAULT_DEBUG_CHANNEL(dplay); + +BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) +{ + TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved); + + switch (fdwReason) + { + case DLL_WINE_PREATTACH: + return FALSE; /* prefer native version */ + case DLL_PROCESS_ATTACH: + /* TODO: Initialization */ + DisableThreadLibraryCalls(hinstDLL); + break; + case DLL_PROCESS_DETACH: + break; + default: + break; + } + + return TRUE; +} + + +/****************************************************************** + * SPInit (DPWSOCKX.1) + * + * + */ +HRESULT WINAPI SPInit( LPSPINITDATA lpspData ) +{ + /* TODO: Initialize callbacks and needed fields in lpspData */ + return DPERR_UNSUPPORTED; +}