ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/uulib/uuint.h
(Generate patch)

Comparing Convert-UUlib/uulib/uuint.h (file contents):
Revision 1.11 by root, Sat Dec 12 10:48:39 2020 UTC vs.
Revision 1.12 by root, Sun Dec 13 02:55:12 2020 UTC

20/* 20/*
21 * This file describes the internal structures, variables and definitions 21 * This file describes the internal structures, variables and definitions
22 * of UUDeview. It should not be included from other packages. Subject to 22 * of UUDeview. It should not be included from other packages. Subject to
23 * change without notice. Do not depend on anything here. 23 * change without notice. Do not depend on anything here.
24 * 24 *
25 * $Id: uuint.h,v 1.11 2020/12/12 10:48:39 root Exp $ 25 * $Id: uuint.h,v 1.12 2020/12/13 02:55:12 root Exp $
26 */ 26 */
27 27
28/* 28/*
29 * Busy Polls will be made after processing ... lines 29 * Busy Polls will be made after processing ... lines
30 */ 30 */
163 * and produces this uufile structure. 163 * and produces this uufile structure.
164 * Linked List, ordered by partno. 164 * Linked List, ordered by partno.
165 **/ 165 **/
166 166
167typedef struct _uufile { 167typedef struct _uufile {
168 struct _uufile *NEXT;
168 char *filename; 169 char *filename;
169 char *subfname; 170 char *subfname;
170 char *mimeid; 171 char *mimeid;
171 char *mimetype; 172 char *mimetype;
172 int partno;
173 fileread *data; 173 fileread *data;
174 long yefilesize; 174 long yefilesize;
175 struct _uufile *NEXT; 175 int partno;
176} uufile; 176} uufile;
177 177
178extern void *uu_MsgCBArg; 178extern void *uu_MsgCBArg;
179extern void *uu_BusyCBArg; 179extern void *uu_BusyCBArg;
180extern void *uu_FileCBArg; 180extern void *uu_FileCBArg;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines