/************************************************************************************** Copyright (c) 2002 The UbixOS Project All rights reserved. Redistribution and use in source and binary forms, with or without modification, are prohibited. $Id$ **************************************************************************************/ #ifndef _UBIXFS_H #define _UBIXFS_H #include <ubixos/types.h> struct fileTable { uChar fileName[24]; uShort start; uShort end; uShort attributes; uShort reserved; }; struct bootSect { uChar jmp[4]; uChar id[6]; uLong version; unsigned long fsStart; }; void initUbixFS(); #endif