| | 483 | /** |
| | 484 | * Set visible list status for a contact |
| | 485 | * |
| | 486 | * @param id User id |
| | 487 | * @param ppid User protocol id |
| | 488 | * @param visible True to add user to visible list or false to remove |
| | 489 | */ |
| | 490 | void ProtoSetInVisibleList(const char* id, unsigned long ppid, bool visible); |
| | 491 | |
| | 492 | /** |
| | 493 | * Set invisible list status for a contact |
| | 494 | * |
| | 495 | * @param id User id |
| | 496 | * @param ppid User protocol id |
| | 497 | * @param invisible True to add user to invisible list or false to remove |
| | 498 | */ |
| | 499 | void ProtoSetInInvisibleList(const char* id, unsigned long ppid, bool invisible); |
| | 500 | |
| | 501 | /** |
| | 502 | * Set invisible list status for a contact |
| | 503 | * |
| | 504 | * @param id User id |
| | 505 | * @param ppid User protocol id |
| | 506 | * @param ignore True to add user to ignore list or false to remove |
| | 507 | */ |
| | 508 | void ProtoSetInIgnoreList(const char* id, unsigned long ppid, bool ignore); |
| | 509 | |