1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
/*
gpiSearch.h
GameSpy Presence SDK
Dan "Mr. Pants" Schoenblum
Copyright 1999-2007 GameSpy Industries, Inc
devsupport@gamespy.com
***********************************************************************
Please see the GameSpy Presence SDK documentation for more information
**********************************************************************/
#ifndef _GPISEARCH_H_
#define _GPISEARCH_H_
//INCLUDES
//////////
#include "gpi.h"
//TYPES
///////
#define GPI_SEARCH_PROFILE 1
#define GPI_SEARCH_IS_VALID 2
#define GPI_SEARCH_NICKS 3
#define GPI_SEARCH_PLAYERS 4
#define GPI_SEARCH_CHECK 5
#define GPI_SEARCH_NEWUSER 6
#define GPI_SEARCH_OTHERS_BUDDY 7
#define GPI_SEARCH_SUGGEST_UNIQUE 8
#define GPI_SEARCH_OTHERS_BUDDY_LIST 9
#define GPI_SEARCH_PROFILE_UNIQUENICK 10
// A timeout used to abort searches taking too long
#define GPI_SEARCH_TIMEOUT 60000
// Profile Search operation data.
/////////////////////////////////
typedef struct
{
int type;
SOCKET sock;
GPIBuffer inputBuffer;
GPIBuffer outputBuffer;
char nick[GP_NICK_LEN];
char uniquenick[GP_UNIQUENICK_LEN];
int namespaceIDs[GP_MAX_NAMESPACEIDS];
int numNamespaces;
char email[GP_EMAIL_LEN];
char firstname[GP_FIRSTNAME_LEN];
char lastname[GP_LASTNAME_LEN];
char password[GP_PASSWORD_LEN];
char cdkey[GP_CDKEY_LEN];
int partnerID;
int icquin;
int skip;
int productID;
GPIBool processing;
GPIBool remove;
gsi_time searchStartTime;
int *revBuddyProfileIds;
int numOfRevBuddyProfiles;
} GPISearchData;
//FUNCTIONS
///////////
GPResult
gpiProfileSearch(
GPConnection * connection,
const char nick[GP_NICK_LEN],
const char uniquenick[GP_UNIQUENICK_LEN],
const char email[GP_EMAIL_LEN],
const char firstname[GP_FIRSTNAME_LEN],
const char lastname[GP_LASTNAME_LEN],
int icquin,
int skip,
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult
gpiProfileSearchUniquenick(
GPConnection * connection,
const char uniquenick[GP_UNIQUENICK_LEN],
const int namespaceIDs[],
int numNamespaces,
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult
gpiIsValidEmail(
GPConnection * connection,
const char email[GP_EMAIL_LEN],
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult
gpiGetUserNicks(
GPConnection * connection,
const char email[GP_EMAIL_LEN],
const char password[GP_PASSWORD_LEN],
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult
gpiFindPlayers(
GPConnection * connection,
int productID,
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult gpiCheckUser(
GPConnection * connection,
const char nick[GP_NICK_LEN],
const char email[GP_EMAIL_LEN],
const char password[GP_PASSWORD_LEN],
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult gpiNewUser(
GPConnection * connection,
const char nick[GP_NICK_LEN],
const char uniquenick[GP_UNIQUENICK_LEN],
const char email[GP_EMAIL_LEN],
const char password[GP_PASSWORD_LEN],
const char cdkey[GP_CDKEY_LEN],
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult gpiOthersBuddy(
GPConnection * connection,
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult gpiOthersBuddyList(
GPConnection * connection,
int *profiles,
int numOfProfiles,
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult gpiSuggestUniqueNick(
GPConnection * connection,
const char desirednick[GP_NICK_LEN],
GPEnum blocking,
GPCallback callback,
void * param
);
GPResult
gpiProcessSearches(
GPConnection * connection
);
#endif
|