Auto merged

2004/08/18 19:59:42+01:00 flatcap.org!ntfs
track memory usage

2004/08/18 19:58:56+01:00 flatcap.org!ntfs
a cache for a non-altered bitmap

2004/08/15 23:53:28+01:00 flatcap.org!ntfs
not needed

2004/08/15 21:12:15+01:00 flatcap.org!ntfs
typo

(Logical change 1.512)
edge.strict_endians
flatcap.org!ntfs 2004-08-20 17:27:24 +00:00
parent ec25948835
commit f49c5bc704
1 changed files with 9 additions and 4 deletions

View File

@ -27,6 +27,11 @@
#include "types.h"
#include "layout.h"
#define ntfs_malloc malloc
#define ntfs_realloc realloc
#define ntfs_calloc calloc
#define ntfs_free free
/**
* struct options
*/
@ -48,10 +53,11 @@ struct options {
*/
struct ntfs_bmp {
ntfs_attr *attr;
int count;
u8 **data;
VCN *data_vcn;
int count;
//int cluster_size;
u8 *cache;
VCN cache_vcn;
};
/**
@ -83,11 +89,10 @@ struct ntfs_dir {
struct ntfs_dt *index;
struct ntfs_dir **children;
int child_count;
struct mft_bitmap *bitmap;
struct ntfs_bmp *bitmap;
ntfs_inode *inode;
ntfs_attr *iroot;
ntfs_attr *ialloc;
ntfs_attr *ibmp;
int index_size;
u8 padding[4]; /* Unused: padding to 64 bit. */
};