You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
493 B
46 lines
493 B
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
pathlist.h
|
|
|
|
Abstract:
|
|
|
|
SIS Groveler path list headers
|
|
|
|
Authors:
|
|
|
|
John Douceur, 1998
|
|
|
|
Environment:
|
|
|
|
User Mode
|
|
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
#ifndef _INC_PATHLIST
|
|
|
|
#define _INC_PATHLIST
|
|
|
|
struct PathList
|
|
{
|
|
PathList();
|
|
~PathList();
|
|
|
|
int *num_paths;
|
|
const _TCHAR ***paths;
|
|
|
|
private:
|
|
|
|
int num_partitions;
|
|
BYTE *buffer;
|
|
_TCHAR **partition_buffers;
|
|
};
|
|
|
|
#endif /* _INC_PATHLIST */
|