home *** CD-ROM | disk | FTP | other *** search
- typedef struct
- {
- char status; // ' ' for public
-
- char msgnum[7]; // all strings are space padded
- char date[8];
- char time[5];
-
- char to[25]; // Uppercase, left justified
- char from[25]; // Uppercase left justified
- char subject[25];
- char password[12];
- char reference[8];
-
- char amount_blocks[6];
- char flag;
-
- unsigned int conf_num;
- unsigned int logical_num;
- char tagline;
- }qwk_record;
-
-
- typedef struct
- {
- float pos;
- char nouse;
- }qwk_index;
-
-
- /* prototypes */
-
- void convert_qwk_to_wwiv(char *qname, char *pname);
- void read_reg_ini(void);
- qwk_record *readqwk(int qfile);
- void put_in_wwiv(int pfile, qwk_record *qwk_rec);
- void build_control_dat(void);
- void qwk_remove_null(char *memory, int size);
- int _fieeetomsbin(float *src4, float *dest4);
-
-