diff options
author | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2008-06-02 05:52:07 +0000 |
---|---|---|
committer | (no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10> | 2008-06-02 05:52:07 +0000 |
commit | 389f409a4b7c4243435ffdd11e39f225965a5a61 (patch) | |
tree | 336485ddede887b1f44037f68c25e812630b0cd7 /MySpace/server_con.h | |
parent | bbdabe234691ad14c975661376e4e89c6650cdb8 (diff) |
store contacts properly on server side, so that status is reported
added code to store all old contacts to fix old server side contact lists
updated version.h
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@409 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'MySpace/server_con.h')
-rw-r--r-- | MySpace/server_con.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MySpace/server_con.h b/MySpace/server_con.h index c81ce07..be73a6a 100644 --- a/MySpace/server_con.h +++ b/MySpace/server_con.h @@ -16,6 +16,9 @@ void SetServerStatusMessage(char *msg); HANDLE FindContact(int uid);
HANDLE CreateContact(int uid, char *nick, char *email, bool add_buddy);
int LookupUID(int uid);
+void AddBuddyOnServer(int uid);
+
+void AddAllContactsToServer();
void SendMessage(ClientNetMessage &msg);
void DownloadAvatar(HANDLE hContact, char *url);
|