diff src/protocols/trepia/profile.h @ 5752:90eea4997759

[gaim-migrate @ 6177] Trepia connections are a bit better now. People's usernames are now their usernames and not their ID numbers. Some things are faster, I think. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Wed, 04 Jun 2003 19:46:48 +0000
parents 99ae9bd8b5fa
children d42d2c9c2122
line wrap: on
line diff
--- a/src/protocols/trepia/profile.h	Wed Jun 04 18:29:20 2003 +0000
+++ b/src/protocols/trepia/profile.h	Wed Jun 04 19:46:48 2003 +0000
@@ -27,6 +27,8 @@
 
 typedef struct
 {
+	int type;           /* c */
+
 	int id;             /* a */
 	char *location;     /* p */
 	time_t login_time;  /* b */
@@ -54,6 +56,7 @@
 TrepiaProfile *trepia_profile_new(void);
 void trepia_profile_destroy(TrepiaProfile *profile);
 
+void trepia_profile_set_type(TrepiaProfile *profile, int value);
 void trepia_profile_set_id(TrepiaProfile *profile, int value);
 void trepia_profile_set_location(TrepiaProfile *profile, const char *value);
 void trepia_profile_set_login_time(TrepiaProfile *profile, time_t value);
@@ -76,6 +79,7 @@
 void trepia_profile_set_school(TrepiaProfile *profile, const char *value);
 void trepia_profile_set_company(TrepiaProfile *profile, const char *value);
 
+int trepia_profile_get_type(const TrepiaProfile *profile);
 int trepia_profile_get_id(const TrepiaProfile *profile);
 const char *trepia_profile_get_location(const TrepiaProfile *profile);
 time_t trepia_profile_get_login_time(const TrepiaProfile *profile);