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.
19 lines
547 B
19 lines
547 B
#ifndef _CHGLOGFORMAT_H_
|
|
#define _CHGLOGFORMAT_H_
|
|
|
|
#pragma pack(1)
|
|
typedef struct {
|
|
DWORD dwSize;
|
|
INT64 llSeqNum; // seq num associated with the change log entry
|
|
DWORD dwOpr; // file operation
|
|
DWORD dwDestAttr; // file attributes of the destination file
|
|
DWORD dwFlags; // flags - compressed file, acl in temp file etc.
|
|
WCHAR szData[1]; // szData will contain size-prefixed szSrc, szDest, szTemp and/or bAcl
|
|
} CHGLOGENTRY;
|
|
#pragma pack()
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|