[Toc][Index]

FS32_RETURNFILECACHE - Return file cache

  
Purpose   
Return KernCacheList_t structure pointer.   
Calling Sequence   


int _cdecl FS32_RETURNFILECACHE(pCacheList);

KernCacheList_t *pCacheList;

  
Where   
pCacheList is a pointer to a KernCacheList_t structure returned.   


typedef struct _KernCacheList
{
  unsigned long  LinListCount;
  KernPageList_t *LinearList;
  unsigned long  PhysListCount;
  KernPageList_t *PhysicalList;
} KernCacheList_t;

typedef struct _KernPageList
{
  unsigned long Addr;
  unsigned long Size;
} KernPageList_t;

  
Remarks   
none, yet.   

Created using Inf-PHP v.2 (c) 2003 Yuri Prokushev
Created using Inf-HTML v.0.9b (c) 1995 Peter Childs