HPGCC3 Documentation 3.0 R003
|
00001 //& *** (c) 2006-2011 The HPGCC3 Team *** 00002 //& Claudio Lapilli 00003 //& Ingo Blank 00004 //& 00005 //& This file is licensed under the terms and conditions of the 00006 //& HPGCC3 license that is included with the source distribution. 00007 //& *** (c) 2006-2011 The HPGCC3 Team *** 00008 00009 #ifndef __FS_PRIV_H 00010 #define __FS_PRIV_H 00011 00012 // PRIVATE HEADER FILE FOR LIBRARY BUILD 00013 00014 typedef int FS_VOLUME; 00015 00016 typedef struct { 00017 FS_VOLUME *Volumes[4]; // ALL MOUNTED VOLUMES 00018 unsigned CurrentVolume:16,CaseMode:8,Init:8; // CURRENTLY SELECTED VOLUME, Init=1 if FS was initialized 00019 } FS_PUBLIC; 00020 00021 00022 #endif 00023