Show
Ignore:
Timestamp:
07/15/08 10:05:10 (4 years ago)
Author:
mwhitworth
Message:

Add comments, fix warnings.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/fs/fs/ext3/ext3.h

    r807 r809  
    200200int Ext3FileWrite(struct File* file,BYTE* buffer,DWORD len); 
    201201 
     202/* balloc.c */ 
     203struct Ext3GroupDesc* Ext3GetGroupDesc(struct VfsSuperBlock* superBlock, DWORD groupNo, 
     204        struct Buffer** buffer); 
     205int Ext3BlockMapHandle(struct JournalHandle* handle, struct VNode* vNode, DWORD block, int flags); 
     206int Ext3BlockTruncate(struct VNode* vNode, int size); 
     207 
    202208extern struct VNodeOps ext3VNodeOps; 
    203209extern struct FileOps ext3FileOps;