OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
gpiUnique.h
1/*
2gpiUnique.h
3GameSpy Presence SDK
4Dan "Mr. Pants" Schoenblum
5
6Copyright 1999-2007 GameSpy Industries, Inc
7
8devsupport@gamespy.com
9
10***********************************************************************
11Please see the GameSpy Presence SDK documentation for more information
12**********************************************************************/
13
14#ifndef _GPIUNIQUE_H_
15#define _GPIUNIQUE_H_
16
17//INCLUDES
19#include "gpi.h"
20
21//FUNCTIONS
23GPResult gpiRegisterUniqueNick(
24 GPConnection * connection,
25 const char uniquenick[GP_UNIQUENICK_LEN],
26 const char cdkey[GP_CDKEY_LEN],
27 GPEnum blocking,
28 GPCallback callback,
29 void * param
30);
31
32GPResult gpiProcessRegisterUniqueNick(
33 GPConnection * connection,
34 GPIOperation * operation,
35 const char * input
36);
37
38// Seperated registration of unique nick and cdkey
39GPResult gpiRegisterCdKey(
40 GPConnection * connection,
41 const char cdkey[GP_CDKEY_LEN],
42 GPEnum blocking,
43 GPCallback callback,
44 void * param
45);
46
47GPResult gpiProcessRegisterCdKey(
48 GPConnection * connection,
49 GPIOperation * operation,
50 const char * input
51);
52
53#endif