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.
37 lines
453 B
37 lines
453 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Abstract:
|
|
|
|
This module contains the common extern header information for the EFS
|
|
file system filter driver.
|
|
|
|
Author:
|
|
|
|
Robert Gu (robertg) 29-Oct-1996
|
|
|
|
Enviroment:
|
|
|
|
Kernel Mode Only
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef EFSEXT_H
|
|
#define EFSEXT_H
|
|
|
|
#include "efs.h"
|
|
|
|
//Global externals
|
|
extern EFS_DATA EfsData;
|
|
|
|
#if DBG
|
|
|
|
extern ULONG EFSDebug;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|