comparison: libpurple/protocols/zephyr/ZNewLocU.c
libpurple/protocols/zephyr/ZNewLocU.c
- branch
- release-2.x.y
- changeset 43153
- 2e4624a59df5
- parent 31294
- 73607ab89c6f
- child 40624
- 6f7bbd42d36c
equal
deleted
inserted
replaced
| 8 * "mit-copyright.h". |
8 * "mit-copyright.h". |
| 9 */ |
9 */ |
| 10 |
10 |
| 11 #include "internal.h" |
11 #include "internal.h" |
| 12 |
12 |
| 13 Code_t ZLocateUser(user, nlocs, auth) |
13 Code_t |
| 14 char *user; |
14 ZLocateUser(char *user, int *nlocs, Z_AuthProc auth) |
| 15 int *nlocs; |
|
| 16 Z_AuthProc auth; |
|
| 17 { |
15 { |
| 18 Code_t retval; |
16 Code_t retval; |
| 19 ZNotice_t notice; |
17 ZNotice_t notice; |
| 20 ZAsyncLocateData_t zald; |
18 ZAsyncLocateData_t zald; |
| 21 |
19 |