OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
peerQR.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 _PEERQR_H_
12#define _PEERQR_H_
13
14/*************
15** INCLUDES **
16*************/
17#include "peerMain.h"
18
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24
25/************
26** DEFINES **
27************/
28#define PI_QUERYPORT 6500
29
30/**************
31** FUNCTIONS **
32**************/
33PEERBool piStartReporting(PEER peer, SOCKET socket, unsigned short port);
34void piStopReporting(PEER peer);
35void piSendStateChanged(PEER peer);
36void piQRThink(PEER peer);
37PEERBool piStartAutoMatchReporting(PEER peer);
38void piStopAutoMatchReporting(PEER peer);
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif