mirror of https://github.com/lianthony/NT4.0
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.
47 lines
891 B
47 lines
891 B
/*++
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
tree.h
|
|
|
|
Abstract:
|
|
|
|
Internal definitions from tree.c
|
|
|
|
Author:
|
|
|
|
Jon Newman (jonn) 16 - February - 1994
|
|
|
|
Revision History:
|
|
|
|
Jon Newman (jonn) 16 - February - 1994
|
|
Added RplGrant*Perms primitives
|
|
|
|
--*/
|
|
|
|
typedef DWORD (RPL_TREE_CALLBACK)( PWCHAR Path, PBOOL pAuxiliaryBlock);
|
|
|
|
#define RPL_TREE_AUXILIARY 0x2000 // perform callback action
|
|
#define RPL_TREE_COPY 0x4000
|
|
#define RPL_TREE_DELETE 0x8000
|
|
|
|
//
|
|
// Forward declarations
|
|
//
|
|
|
|
DWORD RplDoTree(
|
|
PWCHAR Source,
|
|
PWCHAR Target,
|
|
DWORD Flags,
|
|
RPL_TREE_CALLBACK AuxiliaryCallback,
|
|
PBOOL pAuxiliaryBlock
|
|
);
|
|
|
|
VOID LoadError(
|
|
PWCHAR FilePath,
|
|
DWORD ActionError,
|
|
DWORD ActionFlags
|
|
);
|
|
|