home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 8 Other / 08-Other.zip / e2fltsrc.zip / e2data.c < prev    next >
C/C++ Source or Header  |  1995-07-24  |  1KB  |  28 lines

  1. /************************************************************************/
  2. /*  Linux partition filter (C) Deon van der Westhuysen.                 */
  3. /*                                                                      */
  4. /*  Dedicated to Jesus Christ, my Lord and Saviour.                     */
  5. /*                                                                      */
  6. /*  Permission is granted to freely use and modify this code for non-   */
  7. /*  profit use on the condition that this notice is not removed. All    */
  8. /*  other rights are reserved. No warranty, etc.                        */
  9. /*                                                                      */
  10. /*  This code is still under development; expect some rough edges.      */
  11. /*                                                                      */
  12. /************************************************************************/
  13.  
  14. #include "e2data.h"
  15.  
  16. PFN        DevHelp= NULL;        /* Ptr to DevHelp service routine */
  17. USHORT        ADDHandle= 0;        /* Our adapter device driver handle */
  18. void far *    pDataSeg= NULL;        /* Virtual address of data segment */
  19. ULONG        ppDataSeg= 0L;        /* Physical address of data segment */
  20.  
  21. int        InstallFlags= 0;
  22. TBaseUnitRec    BaseUnits[MAX_LINUX_PARTITIONS]= {0};
  23. int        NumBaseUnits= 0;
  24. TVirtUnitRec    VirtUnits[MAX_LINUX_PARTITIONS]= {0};
  25. int        NumVirtUnits= 0;
  26. USHORT        MountTable[MAX_LINUX_PARTITIONS]= {0};
  27. int        MountCount= 0;
  28.