OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
peerAutoMatch.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 _PEERAUTOMATCH_H_
12#define _PEERAUTOMATCH_H_
13
14/*************
15** INCLUDES **
16*************/
17#include "peerMain.h"
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/************
24** DEFINES **
25************/
26#define PI_AUTOMATCH_RATING_KEY "gsi_am_rating"
27
28/**************
29** FUNCTIONS **
30**************/
31void piSetAutoMatchStatus(PEER peer, PEERAutoMatchStatus status);
32void piStopAutoMatch(PEER peer);
33PEERBool piJoinAutoMatchRoom(PEER peer, SBServer server);
34
35#ifdef __cplusplus
36}
37#endif
38
39#endif