Leaked source code of windows server 2003
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

  1. #ifndef _CHGLOGFORMAT_H_
  2. #define _CHGLOGFORMAT_H_
  3. #pragma pack(1)
  4. typedef struct {
  5. DWORD dwSize;
  6. INT64 llSeqNum; // seq num associated with the change log entry
  7. DWORD dwOpr; // file operation
  8. DWORD dwDestAttr; // file attributes of the destination file
  9. DWORD dwFlags; // flags - compressed file, acl in temp file etc.
  10. WCHAR szData[1]; // szData will contain size-prefixed szSrc, szDest, szTemp and/or bAcl
  11. } CHGLOGENTRY;
  12. #pragma pack()
  13. #endif