Mercurial > hg > xemacs-beta
comparison src/dired.c @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | 183866b06e0b |
children | fdefd0186b75 |
comparison
equal
deleted
inserted
replaced
646:00c54252fe4f | 647:b39c14581166 |
---|---|
561 } | 561 } |
562 | 562 |
563 struct user_name | 563 struct user_name |
564 { | 564 { |
565 Bufbyte *ptr; | 565 Bufbyte *ptr; |
566 size_t len; | 566 Bytecount len; |
567 }; | 567 }; |
568 | 568 |
569 struct user_cache | 569 struct user_cache |
570 { | 570 { |
571 struct user_name *user_names; | 571 struct user_name *user_names; |
673 &entriesread, &totalentries, &resume_handle); | 673 &entriesread, &totalentries, &resume_handle); |
674 if (status_status_statui_statum_statu != NERR_Success && | 674 if (status_status_statui_statum_statu != NERR_Success && |
675 status_status_statui_statum_statu != ERROR_MORE_DATA) | 675 status_status_statui_statum_statu != ERROR_MORE_DATA) |
676 invalid_operation ("Error enumerating users", | 676 invalid_operation ("Error enumerating users", |
677 make_int (GetLastError ())); | 677 make_int (GetLastError ())); |
678 for (i = 0; i < entriesread; i++) | 678 for (i = 0; i < (int) entriesread; i++) |
679 { | 679 { |
680 int nout = | 680 int nout = |
681 WideCharToMultiByte (CP_ACP, WC_COMPOSITECHECK, | 681 WideCharToMultiByte (CP_ACP, WC_COMPOSITECHECK, |
682 bufptr[i].usri0_name, | 682 bufptr[i].usri0_name, |
683 -1, 0, 0, "~", 0); | 683 -1, 0, 0, "~", 0); |