home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / dropbox-1.1.lha / DropBox / src / fileio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-31  |  1.3 KB  |  56 lines

  1. /** DoRev Header ** Do not edit! **
  2. *
  3. * Name             :  fileio.h
  4. * Copyright        :  Copyright 1993 Steve Anichini. All Rights Reserved.
  5. * Creation date    :  11-Jun-93
  6. * Translator       :  SAS/C 5.1b
  7. *
  8. * Date       Rev  Author               Comment
  9. * ---------  ---  -------------------  ----------------------------------------
  10. * 26-Jun-93    3  Steve Anichini       Added Support for Version 1 of DropBox p
  11. * 21-Jun-93    2  Steve Anichini       First Release.
  12. * 12-Jun-93    1  Steve Anichini       Beta Release 1.0
  13. * 11-Jun-93    0  Steve Anichini       None.
  14. *
  15. *** DoRev End **/
  16.  
  17.  
  18. #define DEFPREF    "ENVARC:DropBox.prefs"
  19.  
  20. /* IFF Pref File Defines */
  21. #define ID_DROP                MAKE_ID('D', 'R', 'O', 'P')
  22. #define ID_GPRF                MAKE_ID('G', 'P', 'R', 'F')
  23. #define ID_DBSE                MAKE_ID('D', 'B', 'S', 'E')
  24. /* Version 1 */
  25. #define ID_DENT                MAKE_ID('D', 'E', 'N', 'T')
  26.  
  27. /* FORM
  28.  * size
  29.  * DROP
  30.  *
  31.  * GPRF
  32.  * size
  33.  * struct GenPref
  34.  *
  35.  * DBSE (if version 0)
  36.  * Really wierd here -
  37.  * Packed strings... then a ULONG
  38.  *
  39.  * DENT (if version 1)
  40.  * 1 entry (packed) strings
  41.  * ULONG patnodes -> number of pattern nodes
  42.  * char pat_Str[PATLEN]        \ Notice -> pattern name not packed!
  43.  * ULONG pat_Flags             |- times patnodes
  44.  * ULONG pat_Reserved          /
  45.  *
  46.  * DENT
  47.  *
  48.  * et al.
  49.  */
  50.   
  51. #define MAX_DENT 16000
  52.  
  53.  
  54.  
  55.  
  56.