OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
peerHost.h
1/*
2GameSpy Peer SDK
3Dan "Mr. Pants" Schoenblum
4dan@gamespy.com
5
6Copyright 1999-2007 GameSpy Industries, Inc
7
8devsupport@gamespy.com
9*/
10
11#ifndef _PEERHOST_H_
12#define _PEERHOST_H_
13
14/*************
15** INCLUDES **
16*************/
17#include "peerMain.h"
18
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24/**************
25** FUNCTIONS **
26**************/
27PEERBool piStartHosting(PEER peer, SOCKET socket, unsigned short port);
28void piStopHosting(PEER peer, PEERBool stopReporting);
29
30#ifdef __cplusplus
31}
32#endif
33
34#endif