2025-04-27 07:49:33 -04:00

47 lines
493 B
C

/*++
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 */