home *** CD-ROM | disk | FTP | other *** search
/ The Arcade BBS / arcadebbs.zip / arcadebbs / bbstools / MODS / QWKCVT01.ZIP / QWKQWK.H < prev    next >
Encoding:
Text File  |  1994-08-18  |  854 b   |  41 lines

  1. typedef struct
  2. {
  3.   char status;              // ' ' for public
  4.  
  5.   char msgnum[7];           // all strings are space padded
  6.   char date[8];
  7.   char time[5];
  8.  
  9.   char to[25];              // Uppercase, left justified
  10.   char from[25];            // Uppercase left justified
  11.   char subject[25];
  12.   char password[12];
  13.   char reference[8];
  14.  
  15.   char amount_blocks[6];
  16.   char flag;
  17.  
  18.   unsigned int conf_num;
  19.   unsigned int logical_num;
  20.   char tagline;
  21. }qwk_record;
  22.  
  23.  
  24. typedef struct
  25. {
  26.   float pos;
  27.   char nouse;
  28. }qwk_index;
  29.  
  30.  
  31. /* prototypes */
  32.  
  33. void convert_qwk_to_wwiv(char *qname, char *pname);
  34. void read_reg_ini(void);
  35. qwk_record *readqwk(int qfile);
  36. void put_in_wwiv(int pfile, qwk_record *qwk_rec);
  37. void build_control_dat(void);
  38. void qwk_remove_null(char *memory, int size);
  39. int _fieeetomsbin(float *src4, float *dest4);
  40.  
  41.