| 36 | | |
|---|
| 37 | | /** |
|---|
| 38 | | * The additional protocol specific info attached to each buddy. We need |
|---|
| 39 | | * to store the unique numeric id number to allow us to push alias changes. |
|---|
| 40 | | */ |
|---|
| 41 | | struct YahooUser |
|---|
| 42 | | { |
|---|
| 43 | | const char *id; /* The yahoo accountid for this buddy (not YahooID but numeric value) */ |
|---|
| 44 | | char *firstname; /* Storing this information for no real reason, just because */ |
|---|
| 45 | | char *lastname; /* Storing this information for no real reason, just because */ |
|---|
| 46 | | char *nickname; /* Storing this information for no real reason, just because */ |
|---|
| 47 | | }; |
|---|
| 48 | | |
|---|