108 lines
2.9 KiB
C
108 lines
2.9 KiB
C
/*
|
|
* 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 "winbase.h"
|
|
#include "winsock2.h"
|
|
#include "winnt.h"
|
|
#include "wine/dplaysp.h"
|
|
|
|
#define DPWS_MAXQUEUESIZE 0
|
|
#define DPWS_HUNDREDBAUD 0
|
|
#define DPWS_LATENCY 500
|
|
#define DPWS_MAXLOCALPLAYERS 65536
|
|
#define DPWS_TIMEOUT 5000
|
|
#define DPWS_MAXBUFFERSIZE 65479
|
|
#define DPWS_MAXPLAYERS 65536
|
|
#define DPWS_GUARANTEED_MAXBUFFERSIZE 1048547
|
|
#define DPWS_GUARANTEED_MAXPLAYERS 64
|
|
|
|
typedef struct tagDPWS_THREADDATA
|
|
{
|
|
BOOL is_running;
|
|
SOCKET sock;
|
|
SOCKADDR_IN addr;
|
|
HANDLE handle;
|
|
LPDIRECTPLAYSP lpISP;
|
|
} DPWS_THREADDATA, *LPDPWS_THREADDATA;
|
|
|
|
typedef struct tagDPWS_DATA
|
|
{
|
|
SOCKET sock;
|
|
DPWS_THREADDATA tcp_listener, udp_listener, dplaysrv;
|
|
SOCKADDR_IN nameserverAddr;
|
|
LPDIRECTPLAYSP lpISP;
|
|
} DPWS_DATA, *LPDPWS_DATA;
|
|
|
|
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
static inline USHORT __dpws_ushort_swap(USHORT s)
|
|
{
|
|
return (s >> 8) | (s << 8);
|
|
}
|
|
static inline ULONG __dpws_ulong_swap(ULONG l)
|
|
{
|
|
return ((ULONG)__dpws_ushort_swap((USHORT)l) << 16) | __dpws_ushort_swap((USHORT)(l >> 16));
|
|
}
|
|
|
|
#define dpws_letohl(l) __dpws_ulong_swap(l)
|
|
#define dpws_letohs(s) __dpws_ushort_swap(s)
|
|
#define dpws_htolel(l) __dpws_ulong_swap(l)
|
|
#define dpws_htoles(s) __dpws_ushort_swap(s)
|
|
|
|
#else /* WORDS_BIGENDIAN */
|
|
|
|
#define dpws_letohl(l) ((ULONG)(l))
|
|
#define dpws_letohs(s) ((USHORT)(s))
|
|
#define dpws_htolel(l) ((ULONG)(l))
|
|
#define dpws_htoles(s) ((USHORT)(s))
|
|
|
|
#endif /* WORDS_BIGENDIAN */
|
|
|
|
|
|
#include "pshpack1.h"
|
|
|
|
typedef struct tagDPSP_MSG_HEADER
|
|
{
|
|
DWORD mixed;
|
|
SOCKADDR_IN SockAddr;
|
|
} DPSP_MSG_HEADER, *LPDPSP_MSG_HEADER;
|
|
typedef const DPSP_MSG_HEADER* LPCDPSP_MSG_HEADER;
|
|
|
|
#include "poppack.h"
|
|
|
|
|
|
#define DPSP_MSG_TOKEN_REMOTE 0xFAB00000
|
|
#define DPSP_MSG_TOKEN_FORWARDED 0xCAB00000
|
|
#define DPSP_MSG_TOKEN_SERVER 0xBAB00000
|
|
|
|
#define DPSP_MSG_MAKE_MIXED(s,t) dpws_htolel((s) | (t))
|
|
#define DPSP_MSG_SIZE(m) (dpws_letohl(m) & 0x000FFFFF)
|
|
#define DPSP_MSG_TOKEN(m) (dpws_letohl(m) & 0xFFF00000)
|
|
|
|
|
|
|
|
HRESULT WINAPI SPInit( LPSPINITDATA );
|
|
|
|
#endif /* __WINE_DPWSOCKX_DLL_H */
|