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.
51 lines
1.0 KiB
51 lines
1.0 KiB
/*++
|
|
|
|
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 pszPath, PVOID * ppv);
|
|
|
|
#define RPL_TREE_COPY_DACL 0x1 // not yet implemented
|
|
#define RPL_TREE_COPY_SACL 0x2 // not yet implemented
|
|
#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,
|
|
PWCHAR Buffer,
|
|
DWORD BufferSize,
|
|
RPL_TREE_CALLBACK AuxiliaryCallback,
|
|
PVOID AuxiliaryBlock
|
|
);
|
|
|
|
VOID LoadError(
|
|
PWCHAR FilePath,
|
|
LPVOID Buffer,
|
|
DWORD BufferSize
|
|
);
|
|
|